@pandacss/studio 0.0.0-dev-20230613163214
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/LICENSE.md +21 -0
- package/astro.config.ts +14 -0
- package/dist/studio.d.ts +13 -0
- package/dist/studio.js +2089 -0
- package/dist/studio.mjs +2087 -0
- package/index.ts +1 -0
- package/package.json +59 -0
- package/panda.config.ts +110 -0
- package/public/favicon.svg +13 -0
- package/src/components/analyzer/category-utilities.tsx +146 -0
- package/src/components/analyzer/data-combobox.tsx +125 -0
- package/src/components/analyzer/data-table.tsx +43 -0
- package/src/components/analyzer/external-icon.tsx +8 -0
- package/src/components/analyzer/file-details.tsx +101 -0
- package/src/components/analyzer/get-report-infos-from.ts +80 -0
- package/src/components/analyzer/quick-tooltip.tsx +15 -0
- package/src/components/analyzer/report-item-columns.tsx +52 -0
- package/src/components/analyzer/report-item-link.tsx +98 -0
- package/src/components/analyzer/section.tsx +24 -0
- package/src/components/analyzer/sort-icon.tsx +7 -0
- package/src/components/analyzer/text-with-count.tsx +28 -0
- package/src/components/analyzer/token-search-combobox.tsx +39 -0
- package/src/components/analyzer/truncated-text.tsx +26 -0
- package/src/components/analyzer/utility-details.tsx +312 -0
- package/src/components/color-constrast.tsx +131 -0
- package/src/components/color-item.tsx +37 -0
- package/src/components/color-wrapper.tsx +25 -0
- package/src/components/colors.tsx +96 -0
- package/src/components/empty-state.tsx +19 -0
- package/src/components/font-family.tsx +55 -0
- package/src/components/font-tokens.tsx +69 -0
- package/src/components/head.astro +35 -0
- package/src/components/icons.tsx +207 -0
- package/src/components/input.tsx +27 -0
- package/src/components/layer-styles.tsx +38 -0
- package/src/components/logo.tsx +34 -0
- package/src/components/nav-item.tsx +39 -0
- package/src/components/overview.tsx +65 -0
- package/src/components/radii.tsx +34 -0
- package/src/components/semantic-color.tsx +27 -0
- package/src/components/side-nav-item.astro +25 -0
- package/src/components/side-nav.astro +30 -0
- package/src/components/sizes.tsx +53 -0
- package/src/components/text-styles.tsx +33 -0
- package/src/components/theme-toggle.astro +56 -0
- package/src/components/token-analyzer.tsx +390 -0
- package/src/components/token-content.tsx +5 -0
- package/src/components/token-group.tsx +6 -0
- package/src/components/typography-playground.tsx +83 -0
- package/src/env.d.ts +1 -0
- package/src/icons/moon.tsx +15 -0
- package/src/icons/sun.tsx +19 -0
- package/src/layouts/Layout.astro +19 -0
- package/src/layouts/Sidebar.astro +35 -0
- package/src/lib/analysis-data.ts +17 -0
- package/src/lib/color-contrast-checker.ts +218 -0
- package/src/lib/color.ts +40 -0
- package/src/lib/constants.ts +140 -0
- package/src/lib/create-context.ts +27 -0
- package/src/lib/get-report-item.tsx +41 -0
- package/src/lib/group-in.ts +35 -0
- package/src/lib/panda.context.ts +23 -0
- package/src/lib/pick.ts +24 -0
- package/src/lib/sizes-sort.ts +10 -0
- package/src/lib/truncate.tsx +7 -0
- package/src/lib/use-color-docs.ts +101 -0
- package/src/pages/colors.astro +11 -0
- package/src/pages/font-sizes.astro +15 -0
- package/src/pages/font-weights.astro +15 -0
- package/src/pages/fonts.astro +11 -0
- package/src/pages/index.astro +8 -0
- package/src/pages/layer-styles.astro +11 -0
- package/src/pages/letter-spacings.astro +20 -0
- package/src/pages/line-heights.astro +21 -0
- package/src/pages/playground/contrast-checker.astro +11 -0
- package/src/pages/playground/typography.astro +11 -0
- package/src/pages/radii.astro +11 -0
- package/src/pages/sizes.astro +14 -0
- package/src/pages/spacing.astro +14 -0
- package/src/pages/text-styles.astro +11 -0
- package/src/pages/token-analyzer/file.astro +11 -0
- package/src/pages/token-analyzer/index.astro +11 -0
- package/src/pages/token-analyzer/utility.astro +11 -0
- package/styled-system/chunks/..__core____tests____composition.test.css +2 -0
- package/styled-system/chunks/src__components__analyzer__category-utilities.css +97 -0
- package/styled-system/chunks/src__components__analyzer__data-combobox.css +77 -0
- package/styled-system/chunks/src__components__analyzer__data-table.css +37 -0
- package/styled-system/chunks/src__components__analyzer__file-details.css +103 -0
- package/styled-system/chunks/src__components__analyzer__quick-tooltip.css +2 -0
- package/styled-system/chunks/src__components__analyzer__report-item-columns.css +29 -0
- package/styled-system/chunks/src__components__analyzer__report-item-link.css +109 -0
- package/styled-system/chunks/src__components__analyzer__section.css +29 -0
- package/styled-system/chunks/src__components__analyzer__text-with-count.css +33 -0
- package/styled-system/chunks/src__components__analyzer__truncated-text.css +13 -0
- package/styled-system/chunks/src__components__analyzer__utility-details.css +125 -0
- package/styled-system/chunks/src__components__color-constrast.css +114 -0
- package/styled-system/chunks/src__components__color-item.css +21 -0
- package/styled-system/chunks/src__components__color-wrapper.css +73 -0
- package/styled-system/chunks/src__components__colors.css +97 -0
- package/styled-system/chunks/src__components__empty-state.css +45 -0
- package/styled-system/chunks/src__components__font-family.css +85 -0
- package/styled-system/chunks/src__components__font-tokens.css +61 -0
- package/styled-system/chunks/src__components__input.css +68 -0
- package/styled-system/chunks/src__components__layer-styles.css +66 -0
- package/styled-system/chunks/src__components__nav-item.css +73 -0
- package/styled-system/chunks/src__components__overview.css +125 -0
- package/styled-system/chunks/src__components__radii.css +49 -0
- package/styled-system/chunks/src__components__semantic-color.css +45 -0
- package/styled-system/chunks/src__components__side-nav-item.css +33 -0
- package/styled-system/chunks/src__components__side-nav.css +49 -0
- package/styled-system/chunks/src__components__sizes.css +41 -0
- package/styled-system/chunks/src__components__text-styles.css +31 -0
- package/styled-system/chunks/src__components__theme-toggle.css +63 -0
- package/styled-system/chunks/src__components__token-analyzer.css +227 -0
- package/styled-system/chunks/src__components__token-content.css +13 -0
- package/styled-system/chunks/src__components__token-group.css +21 -0
- package/styled-system/chunks/src__components__token-search-combobox.css +2 -0
- package/styled-system/chunks/src__components__typography-playground.css +61 -0
- package/styled-system/chunks/src__layouts__Layout.css +2 -0
- package/styled-system/chunks/src__layouts__Sidebar.css +113 -0
- package/styled-system/chunks/src__pages__colors.css +2 -0
- package/styled-system/chunks/src__pages__font-sizes.css +2 -0
- package/styled-system/chunks/src__pages__font-weights.css +2 -0
- package/styled-system/chunks/src__pages__fonts.css +2 -0
- package/styled-system/chunks/src__pages__index.css +2 -0
- package/styled-system/chunks/src__pages__layer-styles.css +2 -0
- package/styled-system/chunks/src__pages__letter-spacings.css +2 -0
- package/styled-system/chunks/src__pages__line-heights.css +2 -0
- package/styled-system/chunks/src__pages__playground__contrast-checker.css +2 -0
- package/styled-system/chunks/src__pages__playground__typography.css +2 -0
- package/styled-system/chunks/src__pages__radii.css +2 -0
- package/styled-system/chunks/src__pages__sizes.css +2 -0
- package/styled-system/chunks/src__pages__spacing.css +2 -0
- package/styled-system/chunks/src__pages__text-styles.css +2 -0
- package/styled-system/chunks/src__pages__token-analyzer__file.css +2 -0
- package/styled-system/chunks/src__pages__token-analyzer__index.css +2 -0
- package/styled-system/chunks/src__pages__token-analyzer__utility.css +2 -0
- package/styled-system/css/conditions.mjs +147 -0
- package/styled-system/css/css.d.ts +2 -0
- package/styled-system/css/css.mjs +391 -0
- package/styled-system/css/cva.d.ts +5 -0
- package/styled-system/css/cva.mjs +63 -0
- package/styled-system/css/cx.d.ts +4 -0
- package/styled-system/css/cx.mjs +15 -0
- package/styled-system/css/index.d.ts +3 -0
- package/styled-system/css/index.mjs +3 -0
- package/styled-system/global.css +61 -0
- package/styled-system/helpers.mjs +251 -0
- package/styled-system/jsx/absolute-center.d.ts +8 -0
- package/styled-system/jsx/absolute-center.mjs +9 -0
- package/styled-system/jsx/aspect-ratio.d.ts +8 -0
- package/styled-system/jsx/aspect-ratio.mjs +9 -0
- package/styled-system/jsx/box.d.ts +8 -0
- package/styled-system/jsx/box.mjs +8 -0
- package/styled-system/jsx/center.d.ts +8 -0
- package/styled-system/jsx/center.mjs +9 -0
- package/styled-system/jsx/circle.d.ts +8 -0
- package/styled-system/jsx/circle.mjs +9 -0
- package/styled-system/jsx/container.d.ts +8 -0
- package/styled-system/jsx/container.mjs +8 -0
- package/styled-system/jsx/divider.d.ts +8 -0
- package/styled-system/jsx/divider.mjs +9 -0
- package/styled-system/jsx/factory.d.ts +2 -0
- package/styled-system/jsx/factory.mjs +59 -0
- package/styled-system/jsx/flex.d.ts +8 -0
- package/styled-system/jsx/flex.mjs +9 -0
- package/styled-system/jsx/float.d.ts +8 -0
- package/styled-system/jsx/float.mjs +9 -0
- package/styled-system/jsx/grid-item.d.ts +8 -0
- package/styled-system/jsx/grid-item.mjs +9 -0
- package/styled-system/jsx/grid.d.ts +8 -0
- package/styled-system/jsx/grid.mjs +9 -0
- package/styled-system/jsx/hstack.d.ts +8 -0
- package/styled-system/jsx/hstack.mjs +9 -0
- package/styled-system/jsx/index.d.ts +20 -0
- package/styled-system/jsx/index.mjs +19 -0
- package/styled-system/jsx/is-valid-prop.mjs +1010 -0
- package/styled-system/jsx/spacer.d.ts +8 -0
- package/styled-system/jsx/spacer.mjs +9 -0
- package/styled-system/jsx/square.d.ts +8 -0
- package/styled-system/jsx/square.mjs +9 -0
- package/styled-system/jsx/stack.d.ts +8 -0
- package/styled-system/jsx/stack.mjs +9 -0
- package/styled-system/jsx/styled-link.d.ts +8 -0
- package/styled-system/jsx/styled-link.mjs +8 -0
- package/styled-system/jsx/vstack.d.ts +8 -0
- package/styled-system/jsx/vstack.mjs +9 -0
- package/styled-system/jsx/wrap.d.ts +8 -0
- package/styled-system/jsx/wrap.mjs +9 -0
- package/styled-system/patterns/absolute-center.d.ts +14 -0
- package/styled-system/patterns/absolute-center.mjs +23 -0
- package/styled-system/patterns/aspect-ratio.d.ts +14 -0
- package/styled-system/patterns/aspect-ratio.mjs +25 -0
- package/styled-system/patterns/box.d.ts +14 -0
- package/styled-system/patterns/box.mjs +12 -0
- package/styled-system/patterns/center.d.ts +14 -0
- package/styled-system/patterns/center.mjs +18 -0
- package/styled-system/patterns/circle.d.ts +14 -0
- package/styled-system/patterns/circle.mjs +22 -0
- package/styled-system/patterns/container.d.ts +14 -0
- package/styled-system/patterns/container.mjs +18 -0
- package/styled-system/patterns/divider.d.ts +16 -0
- package/styled-system/patterns/divider.mjs +21 -0
- package/styled-system/patterns/flex.d.ts +20 -0
- package/styled-system/patterns/flex.mjs +23 -0
- package/styled-system/patterns/float.d.ts +17 -0
- package/styled-system/patterns/float.mjs +45 -0
- package/styled-system/patterns/grid-item.d.ts +19 -0
- package/styled-system/patterns/grid-item.mjs +20 -0
- package/styled-system/patterns/grid.d.ts +18 -0
- package/styled-system/patterns/grid.mjs +25 -0
- package/styled-system/patterns/hstack.d.ts +15 -0
- package/styled-system/patterns/hstack.mjs +20 -0
- package/styled-system/patterns/index.d.ts +18 -0
- package/styled-system/patterns/index.mjs +18 -0
- package/styled-system/patterns/spacer.d.ts +14 -0
- package/styled-system/patterns/spacer.mjs +18 -0
- package/styled-system/patterns/square.d.ts +14 -0
- package/styled-system/patterns/square.mjs +21 -0
- package/styled-system/patterns/stack.d.ts +17 -0
- package/styled-system/patterns/stack.mjs +20 -0
- package/styled-system/patterns/styled-link.d.ts +14 -0
- package/styled-system/patterns/styled-link.mjs +18 -0
- package/styled-system/patterns/vstack.d.ts +15 -0
- package/styled-system/patterns/vstack.mjs +20 -0
- package/styled-system/patterns/wrap.d.ts +18 -0
- package/styled-system/patterns/wrap.mjs +22 -0
- package/styled-system/reset.css +190 -0
- package/styled-system/static.css +5 -0
- package/styled-system/styles.css +938 -0
- package/styled-system/tokens/index.css +374 -0
- package/styled-system/tokens/index.d.ts +8 -0
- package/styled-system/tokens/index.mjs +1590 -0
- package/styled-system/tokens/keyframes.css +30 -0
- package/styled-system/tokens/tokens.d.ts +56 -0
- package/styled-system/types/composition.d.ts +110 -0
- package/styled-system/types/conditions.d.ts +135 -0
- package/styled-system/types/csstype.d.ts +20748 -0
- package/styled-system/types/global.d.ts +15 -0
- package/styled-system/types/helpers.d.ts +1 -0
- package/styled-system/types/index.d.ts +3 -0
- package/styled-system/types/jsx.d.ts +27 -0
- package/styled-system/types/parts.d.ts +5 -0
- package/styled-system/types/pattern.d.ts +52 -0
- package/styled-system/types/prop-type.d.ts +300 -0
- package/styled-system/types/recipe.d.ts +79 -0
- package/styled-system/types/selectors.d.ts +56 -0
- package/styled-system/types/style-props.d.ts +688 -0
- package/styled-system/types/system-types.d.ts +76 -0
- package/virtual-panda.ts +72 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
@layer utilities {
|
|
2
|
+
.w_full {
|
|
3
|
+
width: var(--sizes-full);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.rounded_md {
|
|
7
|
+
border-radius: var(--radii-md);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.d_flex {
|
|
11
|
+
display: flex;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.flex_column {
|
|
15
|
+
flex-direction: column;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.gap_4 {
|
|
19
|
+
gap: var(--spacing-4);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.p_4 {
|
|
23
|
+
padding: var(--spacing-4);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.w_100\% {
|
|
27
|
+
width: 100%;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
@layer utilities {
|
|
2
|
+
.d_inline-flex {
|
|
3
|
+
display: inline-flex;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.items_center {
|
|
7
|
+
align-items: center;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.fs_75\% {
|
|
11
|
+
font-size: 75%;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.leading_0 {
|
|
15
|
+
line-height: 0;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.pos_relative {
|
|
19
|
+
position: relative;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.top_-0\.35em {
|
|
23
|
+
top: -0.35em;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.opacity_0\.5 {
|
|
27
|
+
opacity: 0.5;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.ml_1 {
|
|
31
|
+
margin-left: var(--spacing-1);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
@layer utilities {
|
|
2
|
+
.p_4px_8px {
|
|
3
|
+
padding: 4px 8px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.bg_white {
|
|
7
|
+
background: var(--colors-white);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.list-style_none {
|
|
11
|
+
list-style: none;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.p_4 {
|
|
15
|
+
padding: var(--spacing-4);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.mt_4 {
|
|
19
|
+
margin-top: var(--spacing-4);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.justify_center {
|
|
23
|
+
justify-content: center;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.fs_xl {
|
|
27
|
+
font-size: var(--font-sizes-xl);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.p_16 {
|
|
31
|
+
padding: var(--spacing-16);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.mb_4 {
|
|
35
|
+
margin-bottom: var(--spacing-4);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.flex_column {
|
|
39
|
+
flex-direction: column;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.mt_1 {
|
|
43
|
+
margin-top: var(--spacing-1);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.d_block {
|
|
47
|
+
display: block;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.self_flex-end {
|
|
51
|
+
align-self: flex-end;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.mt_2 {
|
|
55
|
+
margin-top: var(--spacing-2);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.select_none {
|
|
59
|
+
user-select: none;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.fs_lg {
|
|
63
|
+
font-size: var(--font-sizes-lg);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.fs_md {
|
|
67
|
+
font-size: var(--font-sizes-md);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.font_bold {
|
|
71
|
+
font-weight: var(--font-weights-bold);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.ml_auto {
|
|
75
|
+
margin-left: auto;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.bg_gray\.50 {
|
|
79
|
+
background: var(--colors-gray-50);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.d_flex {
|
|
83
|
+
display: flex;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.flex-wrap_wrap {
|
|
87
|
+
flex-wrap: wrap;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.gap_10px {
|
|
91
|
+
gap: 10px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.d_inline-flex {
|
|
95
|
+
display: inline-flex;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.items_center {
|
|
99
|
+
align-items: center;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.opacity_0\.5 {
|
|
103
|
+
opacity: 0.5;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.border-b_1px_solid_transparent {
|
|
107
|
+
border-bottom: 1px solid transparent;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.cursor_pointer {
|
|
111
|
+
cursor: pointer;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.hover\:opacity_1 {
|
|
115
|
+
&:where(:hover, [data-hover]) {
|
|
116
|
+
opacity: 1;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.hover\:border-b_black {
|
|
121
|
+
&:where(:hover, [data-hover]) {
|
|
122
|
+
border-bottom-color: var(--colors-black);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
@layer utilities {
|
|
2
|
+
.pt_16 {
|
|
3
|
+
padding-top: var(--spacing-16);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.gap_5 {
|
|
7
|
+
gap: var(--spacing-5);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.mt_10 {
|
|
11
|
+
margin-top: var(--spacing-10);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.font_bold {
|
|
15
|
+
font-weight: var(--font-weights-bold);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.fs_4xl {
|
|
19
|
+
font-size: var(--font-sizes-4xl);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.opacity_0\.5 {
|
|
23
|
+
opacity: 0.5;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.size_regular {
|
|
27
|
+
size: regular;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.size_large {
|
|
31
|
+
size: large;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.justify_space-between {
|
|
35
|
+
justify-content: space-between;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.font_medium {
|
|
39
|
+
font-weight: var(--font-weights-medium);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.gap_2 {
|
|
43
|
+
gap: var(--spacing-2);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.gap_3 {
|
|
47
|
+
gap: var(--spacing-3);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.justify_center {
|
|
51
|
+
justify-content: center;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.gap_10px {
|
|
55
|
+
gap: 10px;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.flex_row {
|
|
59
|
+
flex-direction: row;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.font_semibold {
|
|
63
|
+
font-weight: var(--font-weights-semibold);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.fs_2xl {
|
|
67
|
+
font-size: var(--font-sizes-2xl);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.p_2 {
|
|
71
|
+
padding: var(--spacing-2);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.ring_none {
|
|
75
|
+
outline: 2px solid transparent;
|
|
76
|
+
outline-offset: 2px;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.border-width_1px {
|
|
80
|
+
border-width: 1px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.border_card {
|
|
84
|
+
border-color: var(--colors-card);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.items_center {
|
|
88
|
+
align-items: center;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.gap_2\.5 {
|
|
92
|
+
gap: var(--spacing-2\.5);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.text_center {
|
|
96
|
+
text-align: center;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.d_flex {
|
|
100
|
+
display: flex;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.flex_column {
|
|
104
|
+
flex-direction: column;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.gap_4 {
|
|
108
|
+
gap: var(--spacing-4);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.flex_1 {
|
|
112
|
+
flex: 1 1 0%;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
@layer utilities {
|
|
2
|
+
.w_full {
|
|
3
|
+
width: var(--sizes-full);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.h_10 {
|
|
7
|
+
height: var(--sizes-10);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.rounded_sm {
|
|
11
|
+
border-radius: var(--radii-sm);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.pos_relative {
|
|
15
|
+
position: relative;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.overflow_hidden {
|
|
19
|
+
overflow: hidden;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.shadow_inset {
|
|
23
|
+
box-shadow: var(--shadows-inset);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.before\:content_\'\' {
|
|
27
|
+
&::before {
|
|
28
|
+
content: '';
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.before\:pos_absolute {
|
|
33
|
+
&::before {
|
|
34
|
+
position: absolute;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.before\:rounded_sm {
|
|
39
|
+
&::before {
|
|
40
|
+
border-radius: var(--radii-sm);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.before\:w_100\% {
|
|
45
|
+
&::before {
|
|
46
|
+
width: 100%;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.before\:h_100\% {
|
|
51
|
+
&::before {
|
|
52
|
+
height: 100%;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.before\:bg_24px {
|
|
57
|
+
&::before {
|
|
58
|
+
background-size: 24px;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.before\:z_-1 {
|
|
63
|
+
&::before {
|
|
64
|
+
z-index: -1;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.before\:bg-img_check {
|
|
69
|
+
&::before {
|
|
70
|
+
background-image: var(--assets-check);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
@layer utilities {
|
|
2
|
+
.text_capitalize {
|
|
3
|
+
text-transform: capitalize;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.fs_xl {
|
|
7
|
+
font-size: var(--font-sizes-xl);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.font_medium {
|
|
11
|
+
font-weight: var(--font-weights-medium);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.opacity_0\.7 {
|
|
15
|
+
opacity: 0.7;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.fs_sm {
|
|
19
|
+
font-size: var(--font-sizes-sm);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.text_uppercase {
|
|
23
|
+
text-transform: uppercase;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.mb_3\.5 {
|
|
27
|
+
margin-bottom: var(--spacing-3\.5);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.pos_sticky {
|
|
31
|
+
position: sticky;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.top_0 {
|
|
35
|
+
top: 0;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.z_1 {
|
|
39
|
+
z-index: 1;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.w_full {
|
|
43
|
+
width: var(--sizes-full);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.gap_0\.5 {
|
|
47
|
+
gap: var(--spacing-0\.5);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.mt_2 {
|
|
51
|
+
margin-top: var(--spacing-2);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.flex_column {
|
|
55
|
+
flex-direction: column;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.gap_10 {
|
|
59
|
+
gap: var(--spacing-10);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.d_flex {
|
|
63
|
+
display: flex;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.items_center {
|
|
67
|
+
align-items: center;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.gap_1 {
|
|
71
|
+
gap: var(--spacing-1);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.flex_row {
|
|
75
|
+
flex-direction: row;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.d_grid {
|
|
79
|
+
display: grid;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.grid-cols_repeat\(auto-fit\,_minmax\(13rem\,_1fr\)\) {
|
|
83
|
+
grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.gap_4 {
|
|
87
|
+
gap: var(--spacing-4);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.my_5 {
|
|
91
|
+
margin-block: var(--spacing-5);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.mx_0 {
|
|
95
|
+
margin-inline: 0;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
@layer utilities {
|
|
2
|
+
.fs_5xl {
|
|
3
|
+
font-size: var(--font-sizes-5xl);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.font_semibold {
|
|
7
|
+
font-weight: var(--font-weights-semibold);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.justify_center {
|
|
11
|
+
justify-content: center;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.gap_5 {
|
|
15
|
+
gap: var(--spacing-5);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.h_full {
|
|
19
|
+
height: var(--sizes-full);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.min-h_40vh {
|
|
23
|
+
min-height: 40vh;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.d_flex {
|
|
27
|
+
display: flex;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.flex_column {
|
|
31
|
+
flex-direction: column;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.items_center {
|
|
35
|
+
align-items: center;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.gap_10px {
|
|
39
|
+
gap: 10px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.opacity_0\.8 {
|
|
43
|
+
opacity: 0.8;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
@layer utilities {
|
|
2
|
+
.fs_100px {
|
|
3
|
+
font-size: 100px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.font_bold {
|
|
7
|
+
font-weight: var(--font-weights-bold);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.leading_1 {
|
|
11
|
+
line-height: 1;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.font_semibold {
|
|
15
|
+
font-weight: var(--font-weights-semibold);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.opacity_0\.7 {
|
|
19
|
+
opacity: 0.7;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.gap_8 {
|
|
23
|
+
gap: var(--spacing-8);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.flex_column {
|
|
27
|
+
flex-direction: column;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.gap_10px {
|
|
31
|
+
gap: 10px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.gap_10 {
|
|
35
|
+
gap: var(--spacing-10);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.flex_row {
|
|
39
|
+
flex-direction: row;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.flex-wrap_wrap {
|
|
43
|
+
flex-wrap: wrap;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.fs_24px {
|
|
47
|
+
font-size: 24px;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.mt_8 {
|
|
51
|
+
margin-top: var(--spacing-8);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.text_uppercase {
|
|
55
|
+
text-transform: uppercase;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.d_flex {
|
|
59
|
+
display: flex;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.items_center {
|
|
63
|
+
align-items: center;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.justify_center {
|
|
67
|
+
justify-content: center;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.flex_0_0_auto {
|
|
71
|
+
flex: 0 0 auto;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.w_8 {
|
|
75
|
+
width: var(--sizes-8);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.h_8 {
|
|
79
|
+
height: var(--sizes-8);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.text_lowercase {
|
|
83
|
+
text-transform: lowercase;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
@layer utilities {
|
|
2
|
+
.mb_3\.5 {
|
|
3
|
+
margin-bottom: var(--spacing-3\.5);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.pos_sticky {
|
|
7
|
+
position: sticky;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.top_0 {
|
|
11
|
+
top: 0;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.z_1 {
|
|
15
|
+
z-index: 1;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.resize_vertical {
|
|
19
|
+
resize: vertical;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.font_medium {
|
|
23
|
+
font-weight: var(--font-weights-medium);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.opacity_0\.4 {
|
|
27
|
+
opacity: 0.4;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.fs_4xl {
|
|
31
|
+
font-size: var(--font-sizes-4xl);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.leading_normal {
|
|
35
|
+
line-height: var(--line-heights-normal);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.flex_column {
|
|
39
|
+
flex-direction: column;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.gap_3\.5 {
|
|
43
|
+
gap: var(--spacing-3\.5);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.d_flex {
|
|
47
|
+
display: flex;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.items_center {
|
|
51
|
+
align-items: center;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.gap_1 {
|
|
55
|
+
gap: var(--spacing-1);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.flex_row {
|
|
59
|
+
flex-direction: row;
|
|
60
|
+
}
|
|
61
|
+
}
|