From 11ba4ce557fc5c20a96f5154e69efe66877d0eee Mon Sep 17 00:00:00 2001 From: Luc Mcgrady Date: Sun, 6 Jul 2025 21:27:50 +0100 Subject: [PATCH] Feat/Replace easy day table with grid --- ts/routes/deck-options/EasyDaysInput.svelte | 92 ++++++++++----------- 1 file changed, 44 insertions(+), 48 deletions(-) diff --git a/ts/routes/deck-options/EasyDaysInput.svelte b/ts/routes/deck-options/EasyDaysInput.svelte index a7c13e2e2..695b4078f 100644 --- a/ts/routes/deck-options/EasyDaysInput.svelte +++ b/ts/routes/deck-options/EasyDaysInput.svelte @@ -21,52 +21,56 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
- - - - - - - - - - - {#each easyDays as day, index} - - - - - {/each} - -
- {tr.deckConfigEasyDaysMinimum()} - - {tr.deckConfigEasyDaysReduced()} - - {tr.deckConfigEasyDaysNormal()} -
{day} - -
+ + {tr.deckConfigEasyDaysMinimum()} + {tr.deckConfigEasyDaysReduced()} + {tr.deckConfigEasyDaysNormal()} + + {#each easyDays as day, index} + {day} +
+ +
+ {/each}
-