From eecdb90768a1eb4a43d6234f4d86e486c0d8c8aa Mon Sep 17 00:00:00 2001 From: Ferran Simon Date: Thu, 25 Jul 2024 14:47:19 +0200 Subject: [PATCH] feat(components/molecule/dropdownList): Change border radious when placed on top --- components/molecule/dropdownList/src/styles/index.scss | 1 + components/molecule/dropdownList/src/styles/settings.scss | 1 + 2 files changed, 2 insertions(+) diff --git a/components/molecule/dropdownList/src/styles/index.scss b/components/molecule/dropdownList/src/styles/index.scss index 71e235d114..e4ee53704c 100644 --- a/components/molecule/dropdownList/src/styles/index.scss +++ b/components/molecule/dropdownList/src/styles/index.scss @@ -17,6 +17,7 @@ $base-class: '.sui-MoleculeDropdownList'; &-top { display: flex; flex-direction: column-reverse; + border-radius: $bdrs-dropdown-list-top; } } diff --git a/components/molecule/dropdownList/src/styles/settings.scss b/components/molecule/dropdownList/src/styles/settings.scss index 73e233c9e8..765f6f42b3 100644 --- a/components/molecule/dropdownList/src/styles/settings.scss +++ b/components/molecule/dropdownList/src/styles/settings.scss @@ -9,4 +9,5 @@ $bd-dropdown-list: $bdw-s solid color-variation($c-gray, 2) !default; $p-dropdown-list: $p-s !default; $bxsh-dropdown-list: $bxsh-l !default; $bdrs-dropdown-list: 0 !default; +$bdrs-dropdown-list-top: 0 !default; $bxz-dropdown-list: border-box !default;