This user script breaks out from the 2 columns, 4 rows layout to a 2 rows, 4 columns layout.
// ==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;
}
`);