From 24b8fb6cacbd4ed7b2fc9c790593f558f54482fc Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Sat, 9 Mar 2024 19:01:47 +0400 Subject: [PATCH] Responsive layout fix: flex-wrap, button text wrap --- scss/style.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scss/style.scss b/scss/style.scss index 956689e..d8a977c 100644 --- a/scss/style.scss +++ b/scss/style.scss @@ -54,7 +54,8 @@ header>label { display: flex; flex-direction: row; align-items: center; - gap: 0.25rem; + column-gap: 0.25rem; + flex-wrap: wrap; } input[type=radio], @@ -63,4 +64,8 @@ header>label { margin-left: 0.25rem; padding: 0; } + + button { + width: max-content; + } } \ No newline at end of file