sunrise-sunset: fix over-100% width issue

This commit is contained in:
Thomas 2023-01-28 08:11:00 +00:00
parent f934bed772
commit 748ce7e7c0

View file

@ -77,8 +77,6 @@
} }
guessingHistory.subscribe((value) => { guessingHistory.subscribe((value) => {
console.log("guessingHistory.subscribe", value);
if (!hasGuessingHistoryBeenLoaded) { if (!hasGuessingHistoryBeenLoaded) {
return; return;
} }
@ -216,7 +214,6 @@
} }
.options { .options {
width: 100%;
padding: 12px; padding: 12px;
display: grid; display: grid;
place-items: center; place-items: center;
@ -249,7 +246,7 @@
.option--sunrise { .option--sunrise {
border-color: var(--colour-orage); border-color: var(--colour-orage);
background-color: var(--colour-orage); background-color: var(--colour-orage);
color: var(--colour-light-grey); color: white;
} }
.option--sunrise:hover:not(:disabled) { .option--sunrise:hover:not(:disabled) {