@basis-ng/styles 0.0.1-alpha.143 → 0.0.1-alpha.144
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/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
b-drawer {
|
|
2
|
-
@apply fixed inset-0
|
|
2
|
+
@apply fixed inset-0 pointer-events-none;
|
|
3
3
|
|
|
4
4
|
.backdrop {
|
|
5
|
-
@apply fixed inset-0 bg-black/50 pointer-events-auto;
|
|
5
|
+
@apply fixed inset-0 bg-black/50 pointer-events-auto z-[999];
|
|
6
6
|
animation: fadeIn 0.3s ease-out;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.drawer-content {
|
|
10
|
-
@apply fixed bottom-0 left-0 right-0 bg-background dark:bg-background-dark rounded-t-lg border border-secondary dark:border-secondary-dark border-b-0 flex flex-col will-change-transform shadow-2xl touch-none select-none pt-10 box-border overflow-hidden h-1/2 pointer-events-auto;
|
|
10
|
+
@apply fixed bottom-0 left-0 right-0 bg-background dark:bg-background-dark rounded-t-lg border border-secondary dark:border-secondary-dark border-b-0 flex flex-col will-change-transform shadow-2xl touch-none select-none pt-10 box-border overflow-hidden h-1/2 pointer-events-auto z-[999];
|
|
11
11
|
transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
|
|
12
12
|
transform: translateY(100%);
|
|
13
13
|
}
|