From 0638870332035b9b39cf14646868c83019891bf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=A2=E3=83=AC=E3=82=AF=E3=82=B5=E3=83=B3=E3=83=80?= =?UTF-8?q?=E3=83=BC=2Eeth?= Date: Wed, 20 Mar 2024 20:52:32 +0900 Subject: [PATCH] chore: buttons do not text wrap --- static/style/inverted-style.css | 6 ++++-- static/style/style.css | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/static/style/inverted-style.css b/static/style/inverted-style.css index 800dc27b..237c5ae4 100644 --- a/static/style/inverted-style.css +++ b/static/style/inverted-style.css @@ -345,7 +345,6 @@ } .toolbar { overflow-x: auto; - white-space: nowrap; margin: 0; padding-left: 0; display: flex; @@ -355,7 +354,7 @@ .toolbar > * { margin-left: 12px; } - .toolbar > button { + .toolbar button { padding: 12px 16px; } } @@ -610,4 +609,7 @@ #bottom-bar a button { height: 30px; } + .toolbar button { + white-space: nowrap; + } } diff --git a/static/style/style.css b/static/style/style.css index b0b3ee3e..b8e94307 100644 --- a/static/style/style.css +++ b/static/style/style.css @@ -345,7 +345,6 @@ } .toolbar { overflow-x: auto; - white-space: nowrap; margin: 0; padding-left: 0; display: flex; @@ -355,7 +354,7 @@ .toolbar > * { margin-left: 12px; } - .toolbar > button { + .toolbar button { padding: 12px 16px; } } @@ -610,4 +609,7 @@ #bottom-bar a button { height: 30px; } + .toolbar button { + white-space: nowrap; + } }