sunrise-sunset: fix over-100% width issue
This commit is contained in:
parent
f934bed772
commit
748ce7e7c0
1 changed files with 1 additions and 4 deletions
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue