@luscii-healthtech/web-ui 42.4.0 → 42.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/web-ui-tailwind.css
CHANGED
|
@@ -109,6 +109,7 @@
|
|
|
109
109
|
--ui-spacing-xxl: 32px;
|
|
110
110
|
--ui-color-on-surface-variant: var(--ui-color-slate-500);
|
|
111
111
|
--ui-color-background: var(--ui-color-slate-50);
|
|
112
|
+
--ui-flyout-menu-content-max-height: 600px;
|
|
112
113
|
}
|
|
113
114
|
*, ::after, ::before, ::backdrop, ::file-selector-button {
|
|
114
115
|
box-sizing: border-box;
|
|
@@ -1059,6 +1060,9 @@ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-se
|
|
|
1059
1060
|
.ui\:max-h-\[calc\(100vh-\(--spacing\(12\)\)\)\] {
|
|
1060
1061
|
max-height: calc(100vh - (calc(var(--ui-spacing) * 12)));
|
|
1061
1062
|
}
|
|
1063
|
+
.ui\:max-h-\[min\(var\(--radix-popper-available-height\)\,var\(--ui-flyout-menu-content-max-height\)\)\] {
|
|
1064
|
+
max-height: min(var(--radix-popper-available-height), var(--ui-flyout-menu-content-max-height));
|
|
1065
|
+
}
|
|
1062
1066
|
.ui\:max-h-full {
|
|
1063
1067
|
max-height: 100%;
|
|
1064
1068
|
}
|