miraclewhips / Sporcle GameHeader Size Fix

// ==UserScript==
// @name         Sporcle GameHeader Size Fix
// @namespace    https://openuserjs.org/users/miraclewhips
// @version      1.0
// @description  Sets the min-height of the game header so the page layout shouldn't jump around when the game ends
// @author       miraclewhips
// @match        https://*.sporcle.com/games/*
// @icon         https://www.google.com/s2/favicons?domain=sporcle.com
// @grant        none
// @copyright    2021, miraclewhips (https://openuserjs.org/users/miraclewhips)
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    document.getElementById('gameHeaderWrapper').style.minHeight = '200px';
})();