From 8f95a6f228f8b1dc130f1adab6829c3292fd5770 Mon Sep 17 00:00:00 2001 From: Adrien Maston Date: Fri, 6 Feb 2026 17:32:55 +0100 Subject: [PATCH 1/3] Add a little space around stage buttons --- app/assets/stylesheets/card-perma.css | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/card-perma.css b/app/assets/stylesheets/card-perma.css index b3d37d68a..dfd198948 100644 --- a/app/assets/stylesheets/card-perma.css +++ b/app/assets/stylesheets/card-perma.css @@ -115,12 +115,12 @@ @media (max-width: 639px) { border: 1px solid var(--card-color); - border-radius: 0.25em; + border-radius: 0.4em; flex-direction: row; gap: 0; overflow: auto; max-inline-size: 100%; - padding: 0; + padding: 0.2em; position: relative; white-space: nowrap; @@ -138,7 +138,6 @@ .card__column-name { @media (max-width: 639px) { - --btn-border-radius: 0; justify-content: center; } } From aa2f0e7fdca99f875f7d4b70564a2bf3d143f545 Mon Sep 17 00:00:00 2001 From: Adrien Maston Date: Fri, 6 Feb 2026 17:45:09 +0100 Subject: [PATCH 2/3] Fix unwanted divider --- app/assets/stylesheets/card-perma.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/stylesheets/card-perma.css b/app/assets/stylesheets/card-perma.css index dfd198948..25afbc43c 100644 --- a/app/assets/stylesheets/card-perma.css +++ b/app/assets/stylesheets/card-perma.css @@ -130,7 +130,7 @@ min-block-size: 2.5em; } - & > form + form:not(:has(.card__column-name--current)) { + & > form:not(:has(.card__column-name--current)) + form:not(:has(.card__column-name--current)) { box-shadow: -1px 0 0 0 var(--color-container); } } From 2bfd54437ce834f92d9108d02e52c5019c47490d Mon Sep 17 00:00:00 2001 From: Adrien Maston Date: Mon, 9 Feb 2026 09:31:50 +0100 Subject: [PATCH 3/3] Use a px padding --- app/assets/stylesheets/card-perma.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/card-perma.css b/app/assets/stylesheets/card-perma.css index 25afbc43c..d916e81d8 100644 --- a/app/assets/stylesheets/card-perma.css +++ b/app/assets/stylesheets/card-perma.css @@ -115,12 +115,12 @@ @media (max-width: 639px) { border: 1px solid var(--card-color); - border-radius: 0.4em; + border-radius: calc(0.2em + 3px); flex-direction: row; gap: 0; overflow: auto; max-inline-size: 100%; - padding: 0.2em; + padding: 3px; position: relative; white-space: nowrap;