@orangecheck/design 0.13.1 → 0.14.1
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/chrome.d.mts +11 -1
- package/dist/chrome.d.ts +11 -1
- package/dist/chrome.js +34 -0
- package/dist/chrome.js.map +1 -1
- package/dist/chrome.mjs +34 -1
- package/dist/chrome.mjs.map +1 -1
- package/dist/components.d.mts +1 -1
- package/dist/components.d.ts +1 -1
- package/dist/components.js +34 -0
- package/dist/components.js.map +1 -1
- package/dist/components.mjs +34 -1
- package/dist/components.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +34 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +34 -1
- package/dist/index.mjs.map +1 -1
- package/dist/styles/theme.css +11 -0
- package/package.json +1 -1
package/dist/styles/theme.css
CHANGED
|
@@ -132,6 +132,17 @@
|
|
|
132
132
|
.container {
|
|
133
133
|
@apply mx-auto w-full max-w-screen-xl px-4 sm:px-6 lg:px-8;
|
|
134
134
|
}
|
|
135
|
+
/* The app-surface counterpart to `.container`: full-bleed (NO max-width, NO
|
|
136
|
+
centering). Crucially it does NOT escalate gutters the way `.container`
|
|
137
|
+
does — a full-bleed app shell pins a fixed-width icon rail (w-14 = 56px)
|
|
138
|
+
flush to the left edge, so an escalating gutter would drift the header
|
|
139
|
+
logo off that rail (worst at desktop). The fixed 18px gutter seats a 20px
|
|
140
|
+
logo mark (visible center at +10px) exactly over the rail's glyph column
|
|
141
|
+
(rail glyph center = 28px = 18 + 10) at every width. Use on full-screen
|
|
142
|
+
application surfaces (OcAppBar header + a full-bleed shell). */
|
|
143
|
+
.app-bar {
|
|
144
|
+
@apply w-full px-[18px];
|
|
145
|
+
}
|
|
135
146
|
.vstack {
|
|
136
147
|
@apply flex flex-col gap-4 sm:gap-5 md:gap-6;
|
|
137
148
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orangecheck/design",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"description": "OrangeCheck design system — multi-theme tokens, primitives, and family composites for the .ochk.io sub-sites. Tailwind 4 + Next.js Pages Router. Not for third-party integration.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"orangecheck",
|