zeus-css 1.0.12 → 1.0.13

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/scss/README.md DELETED
@@ -1,193 +0,0 @@
1
- # ⚡ Zeus CSS
2
-
3
- Zeus is a fluid-first SCSS design system. Every size, space, and font size scales
4
- smoothly between a mobile floor and a desktop ceiling using native CSS
5
- `clamp()` driven by container-query units (`cqi`) — no breakpoint jumps, no
6
- `calc()` guesswork. Colors are OKLCH-based semantic tokens with automatic
7
- light/dark derivation. The whole system is expressed as plain Sass maps, which
8
- makes it easy for both humans and AI coding assistants to read, extend, and
9
- reason about.
10
-
11
- - **Fluid by default** — `clamp()` scaling for spacing, type, radii, borders, icons.
12
- - **Semantic OKLCH tokens** — define 5 base colors, get light/dark/muted/border variants derived automatically.
13
- - **Cascade layers** — `reset → tokens → base → layout → components → utilities`, so utility classes always win without `!important`.
14
- - **Zero-emission module entry** — `@use "zeus" as *` in a component's `.module.scss` gives you every mixin/function with **no** leaked CSS.
15
- - **Config-first** — every token lives in one file you can override; nothing is hardcoded past that boundary.
16
-
17
- ## Browser support
18
-
19
- Zeus targets evergreen browsers only — there is no fallback path for the core
20
- and none is planned. There is no IE11, no legacy Safari, and no polyfill
21
- story: if you need to support browsers older than ~2023, Zeus is not the
22
- right choice.
23
-
24
- **Required (the whole framework depends on these).** Cascade layers
25
- (`@layer`), container query units (`cqi`, `container-type`), `@property`,
26
- relative color syntax (`oklch(from …)`), `:has()`, `color-mix()`. All are
27
- Baseline "Widely available" in current Chrome/Edge, Firefox, and Safari.
28
-
29
- **Progressive enhancement (a few components use these and degrade if
30
- absent).** These are *not* uniformly Baseline — check current support for
31
- your targets rather than assuming:
32
-
33
- | Feature | Used by | Without it you get |
34
- | --- | --- | --- |
35
- | `popover` attribute | `.z-tooltip`, `.z-dropdown`, `.z-toast-region` | No top-layer rendering or light-dismiss — these three need it to function; verify support before relying on them |
36
- | CSS anchor positioning (`position-anchor`, `position-area`) | `.z-tooltip`, `.z-dropdown` | Still a fully working popover, just placed by the UA default instead of anchored to its trigger |
37
- | `@starting-style`, `transition-behavior: allow-discrete` | `.z-tooltip`, `.z-dropdown` enter/exit | Instant show/hide instead of a fade — purely cosmetic |
38
-
39
- Anchor positioning has the narrowest support of the three (Chromium shipped
40
- it well ahead of the other engines). The components are written so its
41
- absence costs placement, never functionality.
42
-
43
- ## Install
44
-
45
- ```bash
46
- npm install zeus-css
47
- ```
48
-
49
- No Sass pipeline and no customization needed? Import the precompiled CSS
50
- once, at your app root, and skip everything below about entry points and
51
- theming:
52
-
53
- ```tsx
54
- // app/layout.tsx
55
- import "zeus-css/css"; // or "zeus-css/dist/zeus.css" / "zeus-css/min" for the minified build
56
- ```
57
-
58
- ## Two ways to consume Zeus — pick one
59
-
60
- These are **mutually exclusive** at the app-root level. Never load both in
61
- the same project.
62
-
63
- | | No Sass pipeline | Sass pipeline (Next.js, Vite, webpack `sass-loader`) |
64
- |---|---|---|
65
- | **Import** | `zeus-css/css` (plain compiled CSS) | `@use "zeus-css/foundation"` |
66
- | **Customizable?** | No — ships the default token values baked in | Yes — edit `zeus.customize.scss` first (see [Theming your brand](#theming-your-brand)) |
67
- | **Use when** | You just want the framework as-is, no build step | You want your own brand colors/type/spacing |
68
-
69
- If you don't need custom theming, skip straight to
70
- [Install](#install) and use the plain CSS import. If you *do* need custom
71
- theming, use the SCSS entry point — the precompiled CSS can't reflect your
72
- overrides, since it was built once, at publish time, with the default tokens.
73
-
74
- ## Two entry points (SCSS pipeline)
75
-
76
- Once you're on the SCSS path, Zeus exposes two distinct entry points — pick the right one per file.
77
-
78
- ### 1. Global stylesheet — `foundation`
79
-
80
- Import **once**, at your app root. Emits the full compiled CSS: reset, design
81
- tokens as CSS custom properties, typography base, and every utility class
82
- (`.padding-lg`, `.text-h1`, `.grid-cols-3`, …).
83
-
84
- ```scss
85
- // app/globals.scss
86
- @use "zeus-css/foundation";
87
- ```
88
-
89
- ### 2. Component modules — `zeus`
90
-
91
- Import in **every** `.module.scss` component file. Exposes all mixins and
92
- functions (`@include padding(...)`, `@include text(...)`, `color(...)`, …) but
93
- emits **zero** CSS of its own — only the rules you actually write.
94
-
95
- ```scss
96
- // Button.module.scss
97
- @use "zeus-css/zeus" as *;
98
-
99
- .button {
100
- @include padding("md", "x");
101
- @include text("button");
102
- @include border-radius("sm");
103
- background: color("primary");
104
- color: var(--color-text-inverse);
105
-
106
- &:hover {
107
- background: color("primary-dark");
108
- }
109
- }
110
- ```
111
-
112
- ## 5-minute quickstart
113
-
114
- ```scss
115
- // 1. app/globals.scss — load the framework once
116
- @use "zeus-css/foundation";
117
- ```
118
-
119
- ```tsx
120
- // 2. app/layout.tsx — import the global stylesheet
121
- import "./globals.scss";
122
- ```
123
-
124
- ```scss
125
- // 3. components/Card.module.scss — build a component with the API
126
- @use "zeus-css/zeus" as *;
127
-
128
- .card {
129
- @include padding("lg");
130
- @include border-radius("md");
131
- @include card-shadow();
132
- background: var(--color-surface);
133
- border: var(--border-line-xs) solid var(--color-border);
134
- }
135
-
136
- .title {
137
- @include text("h4");
138
- color: var(--color-text);
139
- }
140
- ```
141
-
142
- ```tsx
143
- // components/Card.tsx
144
- import styles from "./Card.module.scss";
145
-
146
- export function Card({ children }: { children: React.ReactNode }) {
147
- return <div className={styles.card}>{children}</div>;
148
- }
149
- ```
150
-
151
- That's it — no build config, no PostCSS plugin. Zeus compiles with any
152
- standard Dart Sass pipeline (Next.js, Vite, webpack `sass-loader`, or the
153
- `sass` CLI directly).
154
-
155
- ## Theming your brand
156
-
157
- > ⚠️ Only relevant if you're on the **Sass pipeline** path above. If you
158
- > imported the plain `zeus-css/css` build, there is nothing to configure here
159
- > — remove that import first, then follow the steps below instead. Don't use
160
- > both.
161
-
162
- Every visual token — colors, typography, spacing, radii, shadows, breakpoints
163
- — lives in **one file**: `zeus.customize.scss`. Copy the keys you want to
164
- override from `zeus.token.sets.example.scss` (a reference-only file, never
165
- imported) into your own `zeus.customize.scss` before the `@use` chain resolves.
166
- Then compile through `@use "zeus-css/foundation"` as shown in
167
- [Global stylesheet — foundation](#1-global-stylesheet--foundation) — your
168
- overrides are baked into the CSS your own Sass pipeline emits.
169
-
170
- ```scss
171
- // zeus.customize.scss
172
- $zeus-colors: (
173
- "primary": oklch(60% 0.2 250),
174
- "primary-light": oklch(75% 0.15 250),
175
- "primary-dark": oklch(45% 0.25 250),
176
- // ...
177
- );
178
- ```
179
-
180
- Layout/engine behavior (prefixing, responsive strategy, fluid viewport bounds)
181
- lives in `zeus.config.scss` — separate from design tokens on purpose, so
182
- brand changes and structural changes never collide in the same diff.
183
-
184
- ## Learn more
185
-
186
- - `zeus.token.sets.example.scss` — full reference of every default token value.
187
- - `CHANGELOG.md` — what changed between versions.
188
- - `API.md` — the full public API surface: entry points, config variables,
189
- mixins/functions, utility classes, components, and design tokens.
190
-
191
- ## License
192
-
193
- MIT © Stavros Kosmas Lazaris
@@ -1,249 +0,0 @@
1
- # Zeus CSS Cheatsheet
2
-
3
- > Auto-generated from source — do not hand-edit. Regenerate with `npm run gen:cheatsheet`.
4
-
5
- ## Mixins & Functions
6
-
7
- | Kind | Signature | Description | File |
8
- |---|---|---|---|
9
- | mixin | `fade-in($duration: 0.3s, $delay: 0s, $timing: ease-in-out)` | Usage: @include fade-in(0.5s, 0.2s); | `foundation/core/engine/animations.scss` |
10
- | mixin | `slide-in($direction: bottom, $duration: 0.3s, $delay: 0s, $timing: ease-out)` | Usage: @include slide-in(left, 0.4s); | `foundation/core/engine/animations.scss` |
11
- | mixin | `scale($scale: 1.05, $duration: 0.3s, $timing: ease-in-out)` | Usage: @include scale(1.1, 0.3s); | `foundation/core/engine/animations.scss` |
12
- | mixin | `bounce($duration: 0.8s, $iteration: 1, $delay: 0s)` | Usage: @include bounce(0.6s, infinite); | `foundation/core/engine/animations.scss` |
13
- | mixin | `pulse($duration: 1s, $iteration: infinite)` | Usage: @include pulse(1.5s, infinite); | `foundation/core/engine/animations.scss` |
14
- | mixin | `rotate($degrees: 360deg, $duration: 1s, $timing: linear, $iteration: 1)` | Usage: @include rotate(360deg, 2s, linear, infinite); | `foundation/core/engine/animations.scss` |
15
- | mixin | `button-base-reset()` | | `foundation/core/engine/buttons.scss` |
16
- | mixin | `button-structure()` | | `foundation/core/engine/buttons.scss` |
17
- | mixin | `button-apply-variant($variant: "primary")` | Uses direct map access instead of a getter function | `foundation/core/engine/buttons.scss` |
18
- | mixin | `btn-primary()` | | `foundation/core/engine/buttons.scss` |
19
- | mixin | `btn-secondary()` | | `foundation/core/engine/buttons.scss` |
20
- | mixin | `btn-tertiary()` | | `foundation/core/engine/buttons.scss` |
21
- | mixin | `btn-icon-only()` | | `foundation/core/engine/buttons.scss` |
22
- | mixin | `btn-variant($variant: "primary")` | | `foundation/core/engine/buttons.scss` |
23
- | mixin | `btn-size($size: "md")` | | `foundation/core/engine/buttons.scss` |
24
- | function | `color($name, $alpha: 1)` | Retrieve any color from the design palette with optional alpha | `foundation/core/engine/color-api.scss` |
25
- | function | `map-get-safe($map, $key)` | Extracts values from the provided map structure with type validation and unquoted key normalization | `foundation/core/engine/helpers.scss` |
26
- | mixin | `border-radius($type)` | Applies dynamically-scaled responsive rounded corners based on predefined maps | `foundation/core/engine/layout.scss` |
27
- | mixin | `border-line($type)` | Configures responsive border thickness and strokes across viewport ranges | `foundation/core/engine/layout.scss` |
28
- | mixin | `box-size($type)` | Mixin for icon sizes through devices — always clamp() | `foundation/core/engine/layout.scss` |
29
- | mixin | `padding($size, $direction: null)` | Mixin for padding with optional direction — references --space-* :root token | `foundation/core/engine/layout.scss` |
30
- | mixin | `margin($size, $direction: null)` | Mixin for margin with optional direction — references --space-* :root token | `foundation/core/engine/layout.scss` |
31
- | mixin | `gap($size, $direction: null)` | Mixin for gap with optional direction — references --space-* :root token | `foundation/core/engine/layout.scss` |
32
- | mixin | `not-first-child()` | | `foundation/core/engine/layout.scss` |
33
- | mixin | `not-last-child()` | | `foundation/core/engine/layout.scss` |
34
- | mixin | `horizontal-scroll()` | | `foundation/core/engine/layout.scss` |
35
- | mixin | `no-horizontal-scroll()` | | `foundation/core/engine/layout.scss` |
36
- | function | `bp($key)` | | `foundation/core/engine/responsive.scss` |
37
- | mixin | `screen-above($breakpoint)` | | `foundation/core/engine/responsive.scss` |
38
- | mixin | `screen-below($breakpoint)` | | `foundation/core/engine/responsive.scss` |
39
- | mixin | `screen-between($lower, $upper)` | | `foundation/core/engine/responsive.scss` |
40
- | mixin | `suppress-on($scope)` | Scopes: 'handheld', 'mobile', 'tablet', 'desktop' (all singular). | `foundation/core/engine/responsive.scss` |
41
- | mixin | `apply-shadow($size: "md")` | Usage: @include apply-shadow("md"); | `foundation/core/engine/shadows.scss` |
42
- | mixin | `elevation($level: 1)` | Usage: @include elevation(2); // Applies shadow-md | `foundation/core/engine/shadows.scss` |
43
- | mixin | `hover-shadow($default: "md", $hover: "lg")` | Usage: @include hover-shadow("sm", "lg"); | `foundation/core/engine/shadows.scss` |
44
- | mixin | `focus-shadow($shadow: "outline")` | Usage: @include focus-shadow("outline"); | `foundation/core/engine/shadows.scss` |
45
- | mixin | `interactive-shadow($default: "md", $hover: "lg", $focus: "outline")` | Usage: @include interactive-shadow("md", "lg", "outline"); | `foundation/core/engine/shadows.scss` |
46
- | mixin | `card-shadow()` | Usage: @include card-shadow(); | `foundation/core/engine/shadows.scss` |
47
- | mixin | `semantic-shadow($type: "primary")` | Usage: @include semantic-shadow("primary"); | `foundation/core/engine/shadows.scss` |
48
- | mixin | `glow-effect($color: rgba(59, 130, 246, 0.5), $blur: 20px)` | Usage: @include glow-effect("primary", 0.5); | `foundation/core/engine/shadows.scss` |
49
- | mixin | `inner-shadow($size: "inner")` | Usage: @include inner-shadow(); | `foundation/core/engine/shadows.scss` |
50
- | mixin | `layered-shadow($shadow1, $shadow2)` | Usage: @include layered-shadow("md", "primary"); | `foundation/core/engine/shadows.scss` |
51
- | mixin | `conditional-shadow($state: "hover", $shadow: "md")` | Usage: @include conditional-shadow("hover", "lg"); | `foundation/core/engine/shadows.scss` |
52
- | mixin | `no-shadow()` | Usage: @include no-shadow(); | `foundation/core/engine/shadows.scss` |
53
- | mixin | `p($size, $dir: null)` | | `foundation/core/engine/shortcuts.scss` |
54
- | mixin | `m($size, $dir: null)` | | `foundation/core/engine/shortcuts.scss` |
55
- | mixin | `g($size, $dir: null)` | | `foundation/core/engine/shortcuts.scss` |
56
- | mixin | `r($type)` | | `foundation/core/engine/shortcuts.scss` |
57
- | mixin | `t($type)` | | `foundation/core/engine/shortcuts.scss` |
58
- | mixin | `sz($type)` | | `foundation/core/engine/shortcuts.scss` |
59
- | function | `useclamp-sizing($min, $max, $c-floor: map.get($container-bounds, "floor"), $c-ceil: map.get($container-bounds, "ceil"), $precision: 1)` | | `foundation/core/engine/sizing.scss` |
60
- | mixin | `zeus-theme($name, $config)` | | `foundation/core/engine/theme-builder.scss` |
61
- | mixin | `text($type)` | The var is already generated by root-generator.scss. | `foundation/core/engine/typographics.scss` |
62
- | function | `useclamp-typography($typeface, $precision: 1)` | | `foundation/core/engine/typography-calc.scss` |
63
-
64
- ## Utility Class Families
65
-
66
- | Class pattern | Generator mixin | File |
67
- |---|---|---|
68
- | `.flex` | `load-flexbox()` | `foundation/views/render/classes/flexbox.scss` |
69
- | `.flex-row` | `load-flexbox()` | `foundation/views/render/classes/flexbox.scss` |
70
- | `.flex-wrap` | `load-flexbox()` | `foundation/views/render/classes/flexbox.scss` |
71
- | `.flex-column` | `load-flexbox()` | `foundation/views/render/classes/flexbox.scss` |
72
- | `.flex-center` | `load-flexbox()` | `foundation/views/render/classes/flexbox.scss` |
73
- | `.flex-space-between` | `load-flexbox()` | `foundation/views/render/classes/flexbox.scss` |
74
- | `.d-none` | `load-flexbox()` | `foundation/views/render/classes/flexbox.scss` |
75
- | `.d-block` | `load-flexbox()` | `foundation/views/render/classes/flexbox.scss` |
76
- | `.d-inline-block` | `load-flexbox()` | `foundation/views/render/classes/flexbox.scss` |
77
- | `.align-center` | `load-flexbox()` | `foundation/views/render/classes/flexbox.scss` |
78
- | `.align-start` | `load-flexbox()` | `foundation/views/render/classes/flexbox.scss` |
79
- | `.align-end` | `load-flexbox()` | `foundation/views/render/classes/flexbox.scss` |
80
- | `.justify-center` | `load-flexbox()` | `foundation/views/render/classes/flexbox.scss` |
81
- | `.justify-start` | `load-flexbox()` | `foundation/views/render/classes/flexbox.scss` |
82
- | `.justify-end` | `load-flexbox()` | `foundation/views/render/classes/flexbox.scss` |
83
- | `.justify-between` | `load-flexbox()` | `foundation/views/render/classes/flexbox.scss` |
84
- | `.justify-around` | `load-flexbox()` | `foundation/views/render/classes/flexbox.scss` |
85
- | `.d-grid` | `load-grid()` | `foundation/views/render/classes/grid.scss` |
86
- | `.d-inline-grid` | `load-grid()` | `foundation/views/render/classes/grid.scss` |
87
- | `.grid` | `load-grid()` | `foundation/views/render/classes/grid.scss` |
88
- | `.col-span-{n}` | `load-grid()` | `foundation/views/render/classes/grid.scss` |
89
- | `.col-span-full` | `load-grid()` | `foundation/views/render/classes/grid.scss` |
90
- | `.col-start-{n}` | `load-grid()` | `foundation/views/render/classes/grid.scss` |
91
- | `.col-end-{n}` | `load-grid()` | `foundation/views/render/classes/grid.scss` |
92
- | `.grid-cards` | `load-grid()` | `foundation/views/render/classes/grid.scss` |
93
- | `.grid-sidebar` | `load-grid()` | `foundation/views/render/classes/grid.scss` |
94
- | `.grid-split` | `load-grid()` | `foundation/views/render/classes/grid.scss` |
95
- | `.grid-thirds` | `load-grid()` | `foundation/views/render/classes/grid.scss` |
96
- | `.animate-fade-in` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
97
- | `.animate-fade-in-slow` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
98
- | `.animate-fade-in-fast` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
99
- | `.animate-slide-up` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
100
- | `.animate-slide-down` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
101
- | `.animate-slide-left` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
102
- | `.animate-slide-right` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
103
- | `.animate-bounce` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
104
- | `.animate-pulse` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
105
- | `.animate-rotate` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
106
- | `.delay-100` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
107
- | `.delay-200` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
108
- | `.delay-300` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
109
- | `.delay-500` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
110
- | `.delay-700` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
111
- | `.delay-1000` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
112
- | `.duration-150` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
113
- | `.duration-300` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
114
- | `.duration-500` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
115
- | `.duration-700` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
116
- | `.duration-1000` | `load-animations()` | `foundation/views/render/classes/_animations.scss` |
117
- | `.aspect-auto` | `load-aspect-ratio()` | `foundation/views/render/classes/_aspect-ratio.scss` |
118
- | `.aspect-1-1` | `load-aspect-ratio()` | `foundation/views/render/classes/_aspect-ratio.scss` |
119
- | `.aspect-4-3` | `load-aspect-ratio()` | `foundation/views/render/classes/_aspect-ratio.scss` |
120
- | `.aspect-3-2` | `load-aspect-ratio()` | `foundation/views/render/classes/_aspect-ratio.scss` |
121
- | `.aspect-16-9` | `load-aspect-ratio()` | `foundation/views/render/classes/_aspect-ratio.scss` |
122
- | `.aspect-21-9` | `load-aspect-ratio()` | `foundation/views/render/classes/_aspect-ratio.scss` |
123
- | `.aspect-3-4` | `load-aspect-ratio()` | `foundation/views/render/classes/_aspect-ratio.scss` |
124
- | `.aspect-9-16` | `load-aspect-ratio()` | `foundation/views/render/classes/_aspect-ratio.scss` |
125
- | `.border-radius-{n}` | `load-borders()` | `foundation/views/render/classes/_borders.scss` |
126
- | `.border-line-{n}` | `load-borders()` | `foundation/views/render/classes/_borders.scss` |
127
- | `.btn-{n}` | `load-buttons()` | `foundation/views/render/classes/_buttons.scss` |
128
- | `.bg-{n}` | `load-colors()` | `foundation/views/render/classes/_colors.scss` |
129
- | `.color-{n}` | `load-colors()` | `foundation/views/render/classes/_colors.scss` |
130
- | `.border-color-{n}` | `load-colors()` | `foundation/views/render/classes/_colors.scss` |
131
- | `.bg-transparent` | `load-colors()` | `foundation/views/render/classes/_colors.scss` |
132
- | `.color-inherit` | `load-colors()` | `foundation/views/render/classes/_colors.scss` |
133
- | `.color-current` | `load-colors()` | `foundation/views/render/classes/_colors.scss` |
134
- | `.border-color-transparent` | `load-colors()` | `foundation/views/render/classes/_colors.scss` |
135
- | `.border-color-currentColor` | `load-colors()` | `foundation/views/render/classes/_colors.scss` |
136
- | `.surface` | `load-compounds()` | `foundation/views/render/classes/_compounds.scss` |
137
- | `.surface-flat` | `load-compounds()` | `foundation/views/render/classes/_compounds.scss` |
138
- | `.section-wrap` | `load-compounds()` | `foundation/views/render/classes/_compounds.scss` |
139
- | `.section-wrap-narrow` | `load-compounds()` | `foundation/views/render/classes/_compounds.scss` |
140
- | `.glass` | `load-compounds()` | `foundation/views/render/classes/_compounds.scss` |
141
- | `.divider` | `load-compounds()` | `foundation/views/render/classes/_compounds.scss` |
142
- | `.sr-only` | `load-compounds()` | `foundation/views/render/classes/_compounds.scss` |
143
- | `.truncate` | `load-compounds()` | `foundation/views/render/classes/_compounds.scss` |
144
- | `.line-clamp-2` | `load-compounds()` | `foundation/views/render/classes/_compounds.scss` |
145
- | `.line-clamp-3` | `load-compounds()` | `foundation/views/render/classes/_compounds.scss` |
146
- | `.container` | `load-containers()` | `foundation/views/render/classes/_containers.scss` |
147
- | `.opacity-{n}` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
148
- | `.overflow-auto` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
149
- | `.overflow-hidden` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
150
- | `.overflow-scroll` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
151
- | `.overflow-visible` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
152
- | `.overflow-y-auto` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
153
- | `.overflow-y-hidden` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
154
- | `.overflow-y-scroll` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
155
- | `.object-cover` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
156
- | `.object-contain` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
157
- | `.object-fill` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
158
- | `.object-center` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
159
- | `.flex-grow-0` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
160
- | `.flex-grow-1` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
161
- | `.flex-shrink-0` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
162
- | `.flex-shrink-1` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
163
- | `.order-first` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
164
- | `.order-last` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
165
- | `.order-none` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
166
- | `.order-{n}` | `load-misc-utils()` | `foundation/views/render/classes/_misc-utils.scss` |
167
- | `.static` | `load-position()` | `foundation/views/render/classes/_position.scss` |
168
- | `.relative` | `load-position()` | `foundation/views/render/classes/_position.scss` |
169
- | `.absolute` | `load-position()` | `foundation/views/render/classes/_position.scss` |
170
- | `.fixed` | `load-position()` | `foundation/views/render/classes/_position.scss` |
171
- | `.sticky` | `load-position()` | `foundation/views/render/classes/_position.scss` |
172
- | `.inset-auto` | `load-position()` | `foundation/views/render/classes/_position.scss` |
173
- | `.inset-{n}` | `load-position()` | `foundation/views/render/classes/_position.scss` |
174
- | `.top-{n}` | `load-position()` | `foundation/views/render/classes/_position.scss` |
175
- | `.bottom-{n}` | `load-position()` | `foundation/views/render/classes/_position.scss` |
176
- | `.inset-inline-start-{n}` | `load-position()` | `foundation/views/render/classes/_position.scss` |
177
- | `.inset-inline-end-{n}` | `load-position()` | `foundation/views/render/classes/_position.scss` |
178
- | `.top-auto` | `load-position()` | `foundation/views/render/classes/_position.scss` |
179
- | `.bottom-auto` | `load-position()` | `foundation/views/render/classes/_position.scss` |
180
- | `.inset-inline-start-auto` | `load-position()` | `foundation/views/render/classes/_position.scss` |
181
- | `.inset-inline-end-auto` | `load-position()` | `foundation/views/render/classes/_position.scss` |
182
- | `.section-{n}` | `load-sections()` | `foundation/views/render/classes/_sections.scss` |
183
- | `.section-full` | `load-sections()` | `foundation/views/render/classes/_sections.scss` |
184
- | `.shadow-none` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
185
- | `.shadow-xs` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
186
- | `.shadow-sm` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
187
- | `.shadow-md` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
188
- | `.shadow-lg` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
189
- | `.shadow-xl` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
190
- | `.shadow-2xl` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
191
- | `.shadow-primary` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
192
- | `.shadow-secondary` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
193
- | `.shadow-success` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
194
- | `.shadow-warning` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
195
- | `.shadow-danger` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
196
- | `.shadow-info` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
197
- | `.shadow-inner` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
198
- | `.shadow-inner-lg` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
199
- | `.shadow-glow` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
200
- | `.shadow-glow-lg` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
201
- | `.shadow-outline` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
202
- | `.shadow-card` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
203
- | `.shadow-card-hover` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
204
- | `.shadow-dropdown` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
205
- | `.shadow-modal` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
206
- | `.shadow-transition` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
207
- | `.shadow-transition-fast` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
208
- | `.shadow-transition-slow` | `load-shadows()` | `foundation/views/render/classes/_shadows.scss` |
209
- | `.box-{n}` | `load-sizes()` | `foundation/views/render/classes/_sizes.scss` |
210
- | `.icon-{n}` | `load-sizes()` | `foundation/views/render/classes/_sizes.scss` |
211
- | `.w-auto` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
212
- | `.w-full` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
213
- | `.w-screen` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
214
- | `.w-fit` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
215
- | `.w-min` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
216
- | `.w-max` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
217
- | `.w-1\` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
218
- | `.w-2\` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
219
- | `.w-3\` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
220
- | `.min-w-0` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
221
- | `.min-w-full` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
222
- | `.max-w-none` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
223
- | `.max-w-full` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
224
- | `.h-auto` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
225
- | `.h-full` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
226
- | `.h-screen` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
227
- | `.h-fit` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
228
- | `.h-min` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
229
- | `.h-max` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
230
- | `.min-h-0` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
231
- | `.min-h-full` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
232
- | `.min-h-screen` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
233
- | `.max-h-none` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
234
- | `.max-h-full` | `load-sizing-utils()` | `foundation/views/render/classes/_sizing-utils.scss` |
235
- | `.gap-{n}` | `load-spacing()` | `foundation/views/render/classes/_spacing.scss` |
236
- | `.text-{n}` | `load-typography()` | `foundation/views/render/classes/_typography.scss` |
237
- | `.w-unset` | `load-utilities()` | `foundation/views/render/classes/_utilities.scss` |
238
- | `.h-unset` | `load-utilities()` | `foundation/views/render/classes/_utilities.scss` |
239
- | `.no-overflow-x` | `load-utilities()` | `foundation/views/render/classes/_utilities.scss` |
240
- | `.highlight` | `load-utilities()` | `foundation/views/render/classes/_utilities.scss` |
241
- | `.article` | `load-utilities()` | `foundation/views/render/classes/_utilities.scss` |
242
- | `.hidden-desktops` | `load-utilities()` | `foundation/views/render/classes/_utilities.scss` |
243
- | `.hidden-tablets` | `load-utilities()` | `foundation/views/render/classes/_utilities.scss` |
244
- | `.hidden-tablets-desktops` | `load-utilities()` | `foundation/views/render/classes/_utilities.scss` |
245
- | `.hidden-mobiles` | `load-utilities()` | `foundation/views/render/classes/_utilities.scss` |
246
- | `.hidden-devices` | `load-utilities()` | `foundation/views/render/classes/_utilities.scss` |
247
- | `.hidden-upto-ml` | `load-utilities()` | `foundation/views/render/classes/_utilities.scss` |
248
- | `.hidden-from-ml` | `load-utilities()` | `foundation/views/render/classes/_utilities.scss` |
249
- | `.layer-{n}` | `load-z-index()` | `foundation/views/render/classes/_z-index.scss` |