unifyedx-storybook-new 0.1.25 → 0.1.26
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.
|
@@ -840,10 +840,6 @@
|
|
|
840
840
|
padding: calc(var(--spacing) * 4);
|
|
841
841
|
}
|
|
842
842
|
|
|
843
|
-
.p-6 {
|
|
844
|
-
padding: calc(var(--spacing) * 6);
|
|
845
|
-
}
|
|
846
|
-
|
|
847
843
|
.p-8 {
|
|
848
844
|
padding: calc(var(--spacing) * 8);
|
|
849
845
|
}
|
|
@@ -927,10 +923,6 @@
|
|
|
927
923
|
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
928
924
|
}
|
|
929
925
|
|
|
930
|
-
.\!text-\[1\.5rem\] {
|
|
931
|
-
font-size: 1.5rem !important;
|
|
932
|
-
}
|
|
933
|
-
|
|
934
926
|
.leading-5 {
|
|
935
927
|
--tw-leading: calc(var(--spacing) * 5);
|
|
936
928
|
line-height: calc(var(--spacing) * 5);
|
|
@@ -7977,6 +7969,41 @@ body {
|
|
|
7977
7969
|
width: 1rem;
|
|
7978
7970
|
height: 1rem;
|
|
7979
7971
|
}
|
|
7972
|
+
/* Minimal, robust positioning rules */
|
|
7973
|
+
.filter-modal-overlay {
|
|
7974
|
+
position: fixed;
|
|
7975
|
+
inset: 0;
|
|
7976
|
+
background: rgba(0, 0, 0, 0.5);
|
|
7977
|
+
backdrop-filter: blur(2px);
|
|
7978
|
+
}
|
|
7979
|
+
|
|
7980
|
+
.filter-modal-container {
|
|
7981
|
+
position: fixed;
|
|
7982
|
+
inset: 0;
|
|
7983
|
+
z-index: 50; /* sits on top */
|
|
7984
|
+
display: flex;
|
|
7985
|
+
justify-content: flex-end; /* slide-over from right */
|
|
7986
|
+
pointer-events: none; /* allow clicks to pass except panel */
|
|
7987
|
+
}
|
|
7988
|
+
|
|
7989
|
+
.filter-modal-positioner {
|
|
7990
|
+
height: 100%;
|
|
7991
|
+
width: 100%;
|
|
7992
|
+
display: flex;
|
|
7993
|
+
justify-content: flex-end;
|
|
7994
|
+
}
|
|
7995
|
+
|
|
7996
|
+
.filter-modal-panel {
|
|
7997
|
+
pointer-events: auto; /* clickable */
|
|
7998
|
+
height: 100vh;
|
|
7999
|
+
width: 680px; /* your preferred width */
|
|
8000
|
+
max-width: 90vw;
|
|
8001
|
+
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
|
|
8002
|
+
border-radius: 1rem 0 0 1rem;
|
|
8003
|
+
background: #fff;
|
|
8004
|
+
position: relative;
|
|
8005
|
+
overflow: hidden;
|
|
8006
|
+
}
|
|
7980
8007
|
.invite-flow-wrapper {
|
|
7981
8008
|
display: flex;
|
|
7982
8009
|
flex-direction: column;
|
|
@@ -8215,38 +8242,3 @@ body {
|
|
|
8215
8242
|
font-size: 0.875rem;
|
|
8216
8243
|
color: #dc2626;
|
|
8217
8244
|
}
|
|
8218
|
-
/* Minimal, robust positioning rules */
|
|
8219
|
-
.filter-modal-overlay {
|
|
8220
|
-
position: fixed;
|
|
8221
|
-
inset: 0;
|
|
8222
|
-
background: rgba(0, 0, 0, 0.5);
|
|
8223
|
-
backdrop-filter: blur(2px);
|
|
8224
|
-
}
|
|
8225
|
-
|
|
8226
|
-
.filter-modal-container {
|
|
8227
|
-
position: fixed;
|
|
8228
|
-
inset: 0;
|
|
8229
|
-
z-index: 50; /* sits on top */
|
|
8230
|
-
display: flex;
|
|
8231
|
-
justify-content: flex-end; /* slide-over from right */
|
|
8232
|
-
pointer-events: none; /* allow clicks to pass except panel */
|
|
8233
|
-
}
|
|
8234
|
-
|
|
8235
|
-
.filter-modal-positioner {
|
|
8236
|
-
height: 100%;
|
|
8237
|
-
width: 100%;
|
|
8238
|
-
display: flex;
|
|
8239
|
-
justify-content: flex-end;
|
|
8240
|
-
}
|
|
8241
|
-
|
|
8242
|
-
.filter-modal-panel {
|
|
8243
|
-
pointer-events: auto; /* clickable */
|
|
8244
|
-
height: 100vh;
|
|
8245
|
-
width: 680px; /* your preferred width */
|
|
8246
|
-
max-width: 90vw;
|
|
8247
|
-
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
|
|
8248
|
-
border-radius: 1rem 0 0 1rem;
|
|
8249
|
-
background: #fff;
|
|
8250
|
-
position: relative;
|
|
8251
|
-
overflow: hidden;
|
|
8252
|
-
}
|