Skip to content

Commit

Permalink
fix(NcSelect): remove visual gap on top of the list
Browse files Browse the repository at this point in the history
Signed-off-by: Grigorii K. Shartsev <[email protected]>
  • Loading branch information
ShGKme committed Jan 18, 2024
1 parent 862979b commit ed467df
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/NcSelect/NcSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1221,9 +1221,13 @@ body {

.vs__dropdown-menu {
border-color: var(--color-main-text) !important;
outline: 2px solid var(--color-main-background);
outline: none;
box-shadow:
2px 0 0 var(--color-main-background), // Left
0 2px 0 var(--color-main-background), // Bottom
-2px 0 0 var(--color-main-background) // Right
!important;
padding: 4px !important;
box-shadow: none;

&--floating {
/* Fallback styles overidden by programmatically set inline styles */
Expand Down

0 comments on commit ed467df

Please sign in to comment.