From 9752b35e38b0095b2c08e426a5026aed80ab1dae Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Tue, 8 Sep 2026 22:24:42 +0300 Subject: [PATCH] Fix UserSelect selected value gap --- app/components/elements/SearchSelect.module.css | 14 -------------- app/components/elements/Select.module.css | 1 + 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/app/components/elements/SearchSelect.module.css b/app/components/elements/SearchSelect.module.css index 04d82792d..22e39f2c5 100644 --- a/app/components/elements/SearchSelect.module.css +++ b/app/components/elements/SearchSelect.module.css @@ -29,20 +29,6 @@ } } -.selectValue { - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - display: flex; - align-items: center; - gap: var(--s-2); -} - -button:disabled .selectValue { - color: var(--color-text-high); - font-style: italic; -} - .placeholder { font-size: var(--font-xs); font-weight: var(--weight-semi); diff --git a/app/components/elements/Select.module.css b/app/components/elements/Select.module.css index 824d80b7a..4a971f0f8 100644 --- a/app/components/elements/Select.module.css +++ b/app/components/elements/Select.module.css @@ -53,6 +53,7 @@ color: var(--color-text); display: flex; align-items: center; + gap: var(--s-2); &[data-placeholder] { color: var(--color-text-high);