From d9c4f4400efd71071cc44d41b89934751c3f4a45 Mon Sep 17 00:00:00 2001 From: martincupela Date: Mon, 9 Mar 2026 14:19:24 +0100 Subject: [PATCH] fix: make poll forms submitable --- src/components/ChatView/styling/ChatView.scss | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/src/components/ChatView/styling/ChatView.scss b/src/components/ChatView/styling/ChatView.scss index c04d6f310..634e9f998 100644 --- a/src/components/ChatView/styling/ChatView.scss +++ b/src/components/ChatView/styling/ChatView.scss @@ -16,9 +16,8 @@ .str-chat__chat-view__selector { display: flex; flex-direction: column; - padding-inline: 8px; - padding-block: 16px; - gap: 20px; + padding: var(--spacing-md); + gap: var(--spacing-xs); border-right: 1px solid var(--str-chat-selector-border-color); background-color: var(--str-chat-selector-background-color); @@ -64,12 +63,10 @@ --str-chat-unread-count-badge-absolute-offset-vertical: 25%; --str-chat-icon-color: var(--str-chat-selector-button-color-default); - flex-direction: column; gap: 4px; - padding-inline: 10px; - padding-block: 16px; - border-radius: 8px; - font-size: 12px; + padding: var(--spacing-xs); + border-radius: var(--radius-md); + font: var(--str-chat__caption-emphasis-text); line-height: 1; position: relative; @@ -86,6 +83,12 @@ height: var(--str-chat-icon-height); width: var(--str-chat-icon-height); } + + .str-chat__button__content { + display: flex; + flex-direction: column; + align-items: center; + } } .str-chat__chat-view__selector-button-tooltip {