thesilican / duotrigordle

Play 32 wordles simultaneously
https://duotrigordle.com/
58 stars 45 forks source link

Feature Request: 16 columns for big screens #121

Closed BobStein closed 5 months ago

BobStein commented 7 months ago

I was able to get 16 columns:

Duotrigordle wider

by tweaking two values in the CSS:

._boards_oakqo_1._wide_oakqo_25 {
    grid-template-columns: repeat(16,1fr);
    max-width: 10000px;
}

CSS settings for 16 columns, unlimited max-width

Suggest this could be automatic, for those of us abusing our development environment. multiple monitors

BobStein commented 5 months ago

Monkey-patch for the DevTools JavaScript console: document.querySelectorAll('[class^="_boards_"], div[class*=" _boards_"]').forEach(e=>{e.style.maxWidth='1920px';e.style.gridTemplateColumns='repeat(16,1fr)'})

thesilican commented 5 months ago

Feature has been implemented

BobStein commented 5 months ago

Feature has been implemented

Thanks for chonky mode!!