From b308334038f9c0ed5f74b06cf2a6e19834598e34 Mon Sep 17 00:00:00 2001 From: Sylvie Crowe <107814465+oneirocosm@users.noreply.github.com> Date: Wed, 27 Mar 2024 14:28:36 -0700 Subject: [PATCH] fix: use flex for .wave-button instead of block (#511) Previously, .wave-button had `display: block;` overwriting the expected `display: flex;`. This resulted in buttons with an icon being aligned vertically instead of horizontally. This change removes the undesired `display: block;` so the buttons are formatted horizontally again. --- src/app/common/elements/button.less | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/common/elements/button.less b/src/app/common/elements/button.less index b87943674..4e32eb8cc 100644 --- a/src/app/common/elements/button.less +++ b/src/app/common/elements/button.less @@ -10,7 +10,6 @@ border-radius: 6px; height: auto; line-height: 1.5; - display: block; white-space: nowrap; user-select: none;