From de61fa09bc8206f9fefaabdaeeae79568c00e43c Mon Sep 17 00:00:00 2001 From: kvakazyambra Date: Sat, 6 May 2023 19:12:17 +0300 Subject: [PATCH] Fixed topics control style --- src/components/Nav/Header.module.scss | 2 +- src/pages/profile/Settings.module.scss | 30 ++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/src/components/Nav/Header.module.scss b/src/components/Nav/Header.module.scss index fe344927..4bdef84f 100644 --- a/src/components/Nav/Header.module.scss +++ b/src/components/Nav/Header.module.scss @@ -392,7 +392,7 @@ } .userControl { - align-items: baseline; + align-items: center; display: flex; opacity: 1; transition: opacity 0.3s; diff --git a/src/pages/profile/Settings.module.scss b/src/pages/profile/Settings.module.scss index eed12635..24faffb6 100644 --- a/src/pages/profile/Settings.module.scss +++ b/src/pages/profile/Settings.module.scss @@ -189,3 +189,33 @@ h5 { transition: filter 0.3s; } } + +:global(.solid-select-control) { + align-items: center !important; + border: 2px solid #e8e8e8 !important; + border-radius: 2px; + min-height: 61px; + padding: 1rem 0.7rem 0.5rem 1.2rem !important; + + :global(.solid-select-input) { + border: none; + margin-bottom: 0; + padding: 0; + } + + :global(.solid-select-multi-value) { + margin: 0 0.5rem 0.5rem 0; + padding-left: 0.8rem; + padding-bottom: 0.2rem; + } + + :global(.solid-select-multi-value-remove) { + font-size: 2.4rem; + line-height: 1.1; + + &:hover { + opacity: 0.5; + text-shadow: none !important; + } + } +}