We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19feaa1 commit f221f2aCopy full SHA for f221f2a
packages/raystack/sheet/sheet.module.css
@@ -48,8 +48,8 @@
48
.overlay {
49
position: fixed;
50
inset: 0;
51
-
52
- background-color: rgba(0, 0, 0, .15);
+ z-index: 1;
+ background-color: rgba(0, 0, 0, 0.15);
53
}
54
55
.overlay[data-state="open"] {
@@ -65,7 +65,7 @@
65
align-items: center;
66
border-radius: 4px;
67
font-weight: 500;
68
+
69
position: absolute;
70
top: 8px;
71
right: 8px;
@@ -76,11 +76,19 @@
76
77
78
@keyframes fadeIn {
79
- 0% { opacity: 0 }
80
- 100% { opacity: 1 }
+ 0% {
+ opacity: 0;
81
+ }
82
+ 100% {
83
+ opacity: 1;
84
85
86
87
@keyframes fadeOut {
- 0% { opacity: 1 }
- 100% { opacity: 0 }
-}
88
89
90
91
92
93
94
+}
0 commit comments