rootzz-layout 0.1.1 → 0.1.2
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/dist/styles.css +18 -9
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -104,19 +104,28 @@
|
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
/* ── Reset mínimo, ESCOPADO ───────────────────────────────────────────── */
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
.rootzz-layout
|
|
111
|
-
.rootzz-layout *:not(.rootzz-content__inner, .rootzz-content__inner *),
|
|
112
|
-
.rootzz-layout *:not(.rootzz-content__inner, .rootzz-content__inner *)::before,
|
|
113
|
-
.rootzz-layout *:not(.rootzz-content__inner, .rootzz-content__inner *)::after {
|
|
107
|
+
.rootzz-layout,
|
|
108
|
+
.rootzz-layout *,
|
|
109
|
+
.rootzz-layout *::before,
|
|
110
|
+
.rootzz-layout *::after {
|
|
114
111
|
box-sizing: border-box;
|
|
115
112
|
border-width: 0;
|
|
116
113
|
border-style: solid;
|
|
117
114
|
border-color: var(--rzl-border);
|
|
118
115
|
}
|
|
119
116
|
|
|
117
|
+
/* O conteúdo do consumidor vive em `.rootzz-content__inner`: ele e seus
|
|
118
|
+
descendentes ficam de fora do reset de `border-*` para não vazar no app
|
|
119
|
+
de quem consome a lib. `box-sizing` é mantido por ser inofensivo. */
|
|
120
|
+
.rootzz-content__inner,
|
|
121
|
+
.rootzz-content__inner *,
|
|
122
|
+
.rootzz-content__inner *::before,
|
|
123
|
+
.rootzz-content__inner *::after {
|
|
124
|
+
border-width: revert;
|
|
125
|
+
border-style: revert;
|
|
126
|
+
border-color: revert;
|
|
127
|
+
}
|
|
128
|
+
|
|
120
129
|
.rootzz-layout {
|
|
121
130
|
/* Layout do shell: coluna com topbar no topo e (sidebar + conteúdo) abaixo. */
|
|
122
131
|
display: flex;
|
|
@@ -295,8 +304,8 @@
|
|
|
295
304
|
}
|
|
296
305
|
|
|
297
306
|
.rootzz-brand__app-icon {
|
|
298
|
-
height:
|
|
299
|
-
width:
|
|
307
|
+
height: 28px;
|
|
308
|
+
width: 28px;
|
|
300
309
|
object-fit: contain;
|
|
301
310
|
flex-shrink: 0;
|
|
302
311
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rootzz-layout",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Shell de aplicação (Topbar + Sidebar + Content) da Eduzz para React. Leve, sem dependências de runtime e em CSS puro (sem Tailwind no consumidor).",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Eduzz",
|