🩹 fix(ui-input-controls): remove top padding from dropdown options when filter present

This commit is contained in:
Lorenz Hilpert
2025-11-28 18:18:57 +01:00
parent 3228abef44
commit 5aded6ff8e

View File

@@ -64,9 +64,13 @@
}
.ui-dropdown__options {
@apply inline-flex flex-col items-start px-1 w-full max-h-80 overflow-hidden overflow-y-auto;
@apply inline-flex flex-col items-start p-1 w-full max-h-80 overflow-hidden overflow-y-auto;
@apply rounded-[1.25rem] bg-isa-white shadow-[0px_0px_16px_0px_rgba(0,0,0,0.15)];
&:has(.ui-dropdown__filter) {
@apply pt-0;
}
.ui-dropdown__filter {
@apply sticky top-0 px-4 pt-6 pb-5 bg-isa-white list-none w-full;
z-index: 1;