@nomideusz/svelte-calendar 0.15.1 → 0.15.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.
|
@@ -161,6 +161,12 @@ export {};
|
|
|
161
161
|
color: var(--dt-text, #111);
|
|
162
162
|
}
|
|
163
163
|
.fp-body {
|
|
164
|
+
/* A flex child defaults to min-height:auto and never shrinks below its
|
|
165
|
+
content — so a tall form ran past the panel's max-height, into the
|
|
166
|
+
part of a fixed element nothing can scroll to. This is what lets the
|
|
167
|
+
body scroll instead. */
|
|
168
|
+
flex: 1 1 auto;
|
|
169
|
+
min-height: 0;
|
|
164
170
|
overflow: auto;
|
|
165
171
|
overscroll-behavior: contain;
|
|
166
172
|
}
|