From 2d60471f3697a577aafe17ab392e13f20a90f007 Mon Sep 17 00:00:00 2001 From: Luc Mcgrady Date: Thu, 7 Aug 2025 04:36:53 +0100 Subject: [PATCH] Use space-around for tabbed values (#4252) * space-around * have your cake and eat it --- ts/routes/deck-options/TabbedValue.svelte | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ts/routes/deck-options/TabbedValue.svelte b/ts/routes/deck-options/TabbedValue.svelte index daad409c3..87dc4ed2c 100644 --- a/ts/routes/deck-options/TabbedValue.svelte +++ b/ts/routes/deck-options/TabbedValue.svelte @@ -55,7 +55,10 @@ width: 100%; display: flex; flex-wrap: nowrap; - justify-content: space-between; + &:has(li:nth-child(3)) { + justify-content: space-between; + } + justify-content: space-around; padding-inline: 0; margin-bottom: 0.5rem; list-style: none;