@orsetra/shared-config 1.0.6 → 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 +15 -1
- package/tailwind/preset.js +1 -1
package/package.json
CHANGED
package/styles/globals.css
CHANGED
|
@@ -211,13 +211,27 @@
|
|
|
211
211
|
.text-text-placeholder { color: #a8a8a8; }
|
|
212
212
|
.text-text-disabled { color: #c6c6c6; }
|
|
213
213
|
.bg-ui-background { background-color: #f4f4f4; }
|
|
214
|
-
.border-ui-border { border-color: #
|
|
214
|
+
.border-ui-border { border-color: #f0f0f0; }
|
|
215
215
|
.text-interactive { color: #0f62fe; }
|
|
216
216
|
.bg-interactive { background-color: #0f62fe; }
|
|
217
217
|
.bg-interactive\/10 { background-color: rgba(15, 98, 254, 0.1); }
|
|
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
|
============================================== */
|
package/tailwind/preset.js
CHANGED