rootzz-layout 0.1.1 → 0.1.3

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.
Files changed (2) hide show
  1. package/dist/styles.css +8 -9
  2. package/package.json +1 -1
package/dist/styles.css CHANGED
@@ -104,13 +104,12 @@
104
104
  }
105
105
 
106
106
  /* ── Reset mínimo, ESCOPADO ───────────────────────────────────────────── */
107
- /* Atinge o shell (topbar/sidebar/etc.). O conteúdo do consumidor vive em
108
- `.rootzz-content__inner` ele e seus descendentes ficam de fora do reset
109
- para não vazar `box-sizing`/`border-*` no app de quem consome a lib. */
110
- .rootzz-layout:not(.rootzz-content__inner *),
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
+ /* Aplica SOMENTE nos elementos do próprio rootzz-layout (classes `rootzz-*`),
108
+ nunca com `*`. Assim o conteúdo do consumidor dentro de
109
+ `.rootzz-content__inner` nunca herda `box-sizing`/`border-*` da lib. */
110
+ [class*='rootzz-'],
111
+ [class*='rootzz-']::before,
112
+ [class*='rootzz-']::after {
114
113
  box-sizing: border-box;
115
114
  border-width: 0;
116
115
  border-style: solid;
@@ -295,8 +294,8 @@
295
294
  }
296
295
 
297
296
  .rootzz-brand__app-icon {
298
- height: 20px;
299
- width: auto;
297
+ height: 28px;
298
+ width: 28px;
300
299
  object-fit: contain;
301
300
  flex-shrink: 0;
302
301
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rootzz-layout",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
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",