Skip to content

Commit

Permalink
improve pro parity and consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
MattBudz committed Oct 10, 2024
1 parent c577304 commit 0409fdb
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions app/assets/stylesheets/shared/combobox.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@mixin combobox-option {
color: var(--bs-dropdown-color);
color: $defaultText;
cursor: pointer;
display: block;
font-size: 0.9rem;
Expand Down Expand Up @@ -36,7 +36,18 @@
}

.combobox-menu {
@extend .dropdown-menu;
background-color: $white;
border: 1px solid $borderColor;
border-radius: $border-radius;
box-shadow: 0 20px 30px 0 rgba(33, 55, 74, 0.2);
display: none;
font-size: 0.9rem;
position: absolute;
margin: 0;
max-height: calc(100vh - 39.5rem);
overflow-y: auto;
padding: 0.25rem 0;
z-index: 4;
width: 100%;
}

Expand Down

0 comments on commit 0409fdb

Please sign in to comment.