@leitware/dockets 0.4.2 → 0.5.0
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 +1 -1
- package/templates/styles/dockets.css +11 -0
package/package.json
CHANGED
|
@@ -99,9 +99,20 @@
|
|
|
99
99
|
outline: 1px dashed var(--border-color);
|
|
100
100
|
outline-offset: 2px;
|
|
101
101
|
background-color: var(--hover-bg);
|
|
102
|
+
z-index: 9999;
|
|
103
|
+
position: relative;
|
|
102
104
|
}
|
|
103
105
|
}
|
|
104
106
|
|
|
107
|
+
@utility scrollbar-none {
|
|
108
|
+
-ms-overflow-style: none;
|
|
109
|
+
scrollbar-width: none;
|
|
110
|
+
&::-webkit-scrollbar {
|
|
111
|
+
display: none;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
|
|
105
116
|
@layer base {
|
|
106
117
|
:root {
|
|
107
118
|
/* ── Border width ──────────────────────────────── */
|