diff options
author | Volpeon <git@volpeon.ink> | 2024-10-18 18:08:24 +0200 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2024-10-18 18:08:24 +0200 |
commit | 365c56edcc36b5b92902bac01ce44b43d01e8685 (patch) | |
tree | 644611792591a76e605068d0c9e230fad6a633e7 /src/_iro-design.scss | |
parent | Revamped variable management (diff) | |
download | iro-design-365c56edcc36b5b92902bac01ce44b43d01e8685.tar.gz iro-design-365c56edcc36b5b92902bac01ce44b43d01e8685.tar.bz2 iro-design-365c56edcc36b5b92902bac01ce44b43d01e8685.zip |
Refactoring
Diffstat (limited to 'src/_iro-design.scss')
-rw-r--r-- | src/_iro-design.scss | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/_iro-design.scss b/src/_iro-design.scss new file mode 100644 index 0000000..f0f1e50 --- /dev/null +++ b/src/_iro-design.scss | |||
@@ -0,0 +1,40 @@ | |||
1 | $breakpoints: ( | ||
2 | lg: 1340px, | ||
3 | md: 900px, | ||
4 | sm: 620px, | ||
5 | xs: 400px, | ||
6 | ) !default; | ||
7 | |||
8 | @forward 'include-media/dist/include-media' as media--* with ( | ||
9 | $breakpoints: $breakpoints !default, | ||
10 | $unit-intervals: ( | ||
11 | 'px': 1, | ||
12 | 'em': .01, | ||
13 | 'rem': .01, | ||
14 | '': 0 | ||
15 | ) !default, | ||
16 | ); | ||
17 | |||
18 | @forward 'iro-sass/src/responsive' as iro-responsive--* with ( | ||
19 | $named-viewports: $breakpoints !default | ||
20 | ); | ||
21 | |||
22 | @forward 'vars' as vars--*; | ||
23 | |||
24 | @forward 'layouts/button-group' as l-button-group--*; | ||
25 | @forward 'layouts/card-list' as l-card-list--*; | ||
26 | @forward 'layouts/container' as l-container--*; | ||
27 | @forward 'layouts/flex' as l-flex--*; | ||
28 | @forward 'layouts/form' as l-form--*; | ||
29 | @forward 'layouts/media' as l-media--*; | ||
30 | @forward 'layouts/overflow' as l-overflow--*; | ||
31 | |||
32 | @forward 'scopes/implicit' as s-implicit--*; | ||
33 | @forward 'scopes/blockquotes' as s-blockquotes--*; | ||
34 | @forward 'scopes/code' as s-code--*; | ||
35 | //@use 'scopes/headings' as s-headings--*; | ||
36 | @forward 'scopes/links' as s-links--*; | ||
37 | @forward 'scopes/lists' as s-lists--*; | ||
38 | //@use 'scopes/tables' as s-tables--*; | ||
39 | |||
40 | @forward 'objects/action-button' as o-action-button--*; | ||