Skip to content

Commit

Permalink
Rename --select__options-height to --select__options-max-height
Browse files Browse the repository at this point in the history
  • Loading branch information
louischan-oursky committed Aug 23, 2024
1 parent 46ccc6b commit f44940e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions authui/src/authflowv2/components/select.css
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
var(--select__search-input-font-size) * 1.5
);

--select__options-height: 100%;
--select__options-max-height: 100%;
--select__options-py: 1em;
--select__options-px: calc(var(--select__font-size) * 1);
--select__options-space-y: 0.5em;
Expand All @@ -75,7 +75,7 @@
--select__empty-font-weight: var(--typography-body-large-font-weight);

@media (min-width: theme("screens.tablet")) {
--select__options-height: 18rem;
--select__options-max-height: 18rem;
--select__dropdown-width: 22rem;
}
}
Expand Down Expand Up @@ -223,7 +223,7 @@
@apply flex-col;

padding: var(--select__options-py) var(--select__options-px);
max-height: var(--select__options-height);
max-height: var(--select__options-max-height);
overflow-y: auto;

@apply space-y-[var(--select\_\_options\_\_space-y)];
Expand Down

0 comments on commit f44940e

Please sign in to comment.