@cmdniels/uikit 1.5.8 → 1.5.9
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/tailwind.css +29 -31
package/package.json
CHANGED
package/tailwind.css
CHANGED
|
@@ -181,43 +181,41 @@
|
|
|
181
181
|
}
|
|
182
182
|
}
|
|
183
183
|
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
}
|
|
184
|
+
html {
|
|
185
|
+
overflow-y: scroll;
|
|
186
|
+
}
|
|
188
187
|
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
}
|
|
188
|
+
/* Firefox ONLY — this kills webkit pseudo-elements in Chrome 121+ if applied globally */
|
|
189
|
+
@supports not selector(::-webkit-scrollbar) {
|
|
190
|
+
* {
|
|
191
|
+
scrollbar-width: auto;
|
|
192
|
+
scrollbar-color: rgba(128, 128, 128, 0.4) transparent;
|
|
195
193
|
}
|
|
194
|
+
}
|
|
196
195
|
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
196
|
+
/* WebKit / Chromium — only runs where ::-webkit-scrollbar is supported */
|
|
197
|
+
::-webkit-scrollbar {
|
|
198
|
+
width: 8px;
|
|
199
|
+
height: 8px;
|
|
200
|
+
}
|
|
202
201
|
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
202
|
+
::-webkit-scrollbar-track {
|
|
203
|
+
background: transparent;
|
|
204
|
+
}
|
|
206
205
|
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
206
|
+
::-webkit-scrollbar-thumb {
|
|
207
|
+
background: rgba(128, 128, 128, 0.4);
|
|
208
|
+
border-radius: 4px;
|
|
209
|
+
}
|
|
211
210
|
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
211
|
+
::-webkit-scrollbar-thumb:hover {
|
|
212
|
+
background: rgba(128, 128, 128, 0.6);
|
|
213
|
+
}
|
|
215
214
|
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
215
|
+
::-webkit-scrollbar-button {
|
|
216
|
+
display: none;
|
|
217
|
+
}
|
|
219
218
|
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
}
|
|
219
|
+
::-webkit-scrollbar-corner {
|
|
220
|
+
background: transparent;
|
|
223
221
|
}
|