Octordle Widescreen Usability

This user script breaks out from the 2 columns, 4 rows layout to a 2 rows, 4 columns layout.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name     Octordle Widescreen Usability
// @description This user script breaks out from the 2 columns, 4 rows layout to a 2 rows, 4 columns layout.
// @version  3
// @include https://www.britannica.com/games/octordle/*
// @grant    GM_addStyle
// @require https://greasemonkey.github.io/gm4-polyfill/gm4-polyfill.js
// @namespace https://www.britannica.com/games/octordle
// @license EUPL-1.2
// ==/UserScript==
GM_addStyle
(`
.banner-newsletter, .promo-area, .ad-board, mw-quordle-more-games-cms, .ad-banner {
  display: none;
 }
.board {
  width: 22.5%;
}
.normal-boards {
	width: 100%;
	flex: 1;
	overflow: auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 99%;
	margin: auto;
	padding-top: 10px;
}
.letter {
    height: 1.7rem!important;
}
`);