@orsetra/shared-config 1.0.7 → 1.0.8
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/styles/globals.css +14 -0
package/package.json
CHANGED
package/styles/globals.css
CHANGED
|
@@ -218,6 +218,20 @@
|
|
|
218
218
|
.hover\:bg-ui-background:hover { background-color: #f4f4f4; }
|
|
219
219
|
.hover\:text-text-primary:hover { color: #161616; }
|
|
220
220
|
|
|
221
|
+
/* ==============================================
|
|
222
|
+
SIDEBAR — Responsive width tokens
|
|
223
|
+
============================================== */
|
|
224
|
+
:root {
|
|
225
|
+
--sidebar-width: 15rem;
|
|
226
|
+
--sidebar-width-icon: 3rem;
|
|
227
|
+
}
|
|
228
|
+
@media (min-width: 1024px) {
|
|
229
|
+
:root { --sidebar-width: 16rem; }
|
|
230
|
+
}
|
|
231
|
+
@media (min-width: 1280px) {
|
|
232
|
+
:root { --sidebar-width: 17rem; }
|
|
233
|
+
}
|
|
234
|
+
|
|
221
235
|
/* ==============================================
|
|
222
236
|
CLASSES UTILITAIRES IBM
|
|
223
237
|
============================================== */
|