From 9d76fcc425abe1236304c270765ffdb4e6d0ba6e Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 16 Jul 2024 21:55:57 +0300 Subject: [PATCH] fix admin combo-dropdowns styles --- src/App.scss | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/App.scss b/src/App.scss index edd0495f..1145ded4 100644 --- a/src/App.scss +++ b/src/App.scss @@ -671,7 +671,8 @@ option { display: inline-flex; vertical-align: middle; - > * { + > *, + > * .button-default { --_roundness-left: 0; --_roundness-right: 0; @@ -679,11 +680,13 @@ option { flex: 1 1 auto; } - > *:first-child { + > *:first-child, + > *:first-child .button-default { --_roundness-left: var(--roundness); } - > *:last-child { + > *:last-child, + > *:last-child .button-default { --_roundness-right: var(--roundness); } }