diff --git a/ts/routes/deck-options/EasyDays.svelte b/ts/routes/deck-options/EasyDays.svelte index 9b4d9c2a2..eb64d569f 100644 --- a/ts/routes/deck-options/EasyDays.svelte +++ b/ts/routes/deck-options/EasyDays.svelte @@ -36,6 +36,10 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html ]; + + + + @@ -44,40 +48,27 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html - {tr.deckConfigEasyDaysNormal()} - {tr.deckConfigEasyDaysReduced()} - {tr.deckConfigEasyDaysMinimum()} + +
+ {tr.deckConfigEasyDaysMinimum()} + {tr.deckConfigEasyDaysReduced()} + {tr.deckConfigEasyDaysNormal()} +
+ {#each easyDays as day, index} {day} - + - - - - - - @@ -101,6 +92,19 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html .easy-days-settings td { padding: 8px; text-align: center; - border: 1px solid #ddd; + border-bottom: var(--border) solid 1px; + } + .header { + display: grid; + grid-template-columns: 1fr 1fr 1fr; + } + .header span:nth-child(1) { + text-align: left; + } + .header span:nth-child(3) { + text-align: right; + } + .easy-days-settings input[type="range"] { + width: 100%; }