@gitbutler/design-core 1.1.0 → 1.2.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/README.md +47 -0
- package/package.json +8 -3
- package/styles/base.css +1 -1
- package/styles/text.css +14 -14
- package/utility/general.css +55 -0
- package/utility/helpers.css +205 -0
- package/utility/layout.min.css +1 -0
- package/utility/utility.css +3 -0
package/README.md
CHANGED
|
@@ -70,6 +70,49 @@ Import individual style utilities:
|
|
|
70
70
|
@import "@gitbutler/design-core/styles/text"; /* Text utilities */
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
+
### Utility Classes
|
|
74
|
+
|
|
75
|
+
Import all utility classes at once:
|
|
76
|
+
|
|
77
|
+
```css
|
|
78
|
+
@import "@gitbutler/design-core/utility";
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
Or in JavaScript/TypeScript:
|
|
82
|
+
|
|
83
|
+
```javascript
|
|
84
|
+
import "@gitbutler/design-core/utility";
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
Or import individual utility class files:
|
|
88
|
+
|
|
89
|
+
```css
|
|
90
|
+
@import "@gitbutler/design-core/utility/general"; /* Border radius, colors, borders */
|
|
91
|
+
@import "@gitbutler/design-core/utility/helpers"; /* Scrollbar helpers, stack utilities */
|
|
92
|
+
@import "@gitbutler/design-core/utility/layout"; /* Spacing, positioning, flexbox, overflow, text alignment */
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
**General utilities** include:
|
|
96
|
+
|
|
97
|
+
- Border radius (`.radius-s`, `.radius-m`, `.radius-ml`, `.radius-l`)
|
|
98
|
+
- Background colors (`.clr-bg-1`, `.clr-bg-2`, `.clr-bg-3` and their muted variants)
|
|
99
|
+
- Borders (`.clr-border-1`, `.clr-border-2`, `.clr-border-3`)
|
|
100
|
+
- Text colors (`.clr-text-1`, `.clr-text-2`, `.clr-text-3`)
|
|
101
|
+
|
|
102
|
+
**Helper utilities** include:
|
|
103
|
+
|
|
104
|
+
- Scrollbar utilities (`.hide-native-scrollbar`, `.scrollbar`)
|
|
105
|
+
- Stack layouts (`.stack-v`, `.stack-h`)
|
|
106
|
+
|
|
107
|
+
**Layout utilities** include:
|
|
108
|
+
|
|
109
|
+
- Spacing (margin, padding, gap in 2px increments from 2px to 48px)
|
|
110
|
+
- Positioning (`.relative`, `.absolute`, `.fixed`, `.sticky`, positioning utilities)
|
|
111
|
+
- Size (`.full-width`, `.full-height`)
|
|
112
|
+
- Flexbox (`.flex`, `.flex-col`, alignment and justify utilities, flex grow/shrink)
|
|
113
|
+
- Overflow (`.overflow-hidden`, `.overflow-auto`, `.overflow-scroll`, `.overflow-visible`)
|
|
114
|
+
- Text alignment (`.text-center`, `.text-left`, `.text-right`, `.text-nowrap`)
|
|
115
|
+
|
|
73
116
|
## Available Exports
|
|
74
117
|
|
|
75
118
|
- `@gitbutler/design-core/tokens` - CSS custom properties
|
|
@@ -81,6 +124,10 @@ Import individual style utilities:
|
|
|
81
124
|
- `@gitbutler/design-core/styles/base` - Base styles
|
|
82
125
|
- `@gitbutler/design-core/styles/reset` - CSS reset
|
|
83
126
|
- `@gitbutler/design-core/styles/text` - Text utilities
|
|
127
|
+
- `@gitbutler/design-core/utility` - All utility classes (combined)
|
|
128
|
+
- `@gitbutler/design-core/utility/general` - General utility classes (borders, colors)
|
|
129
|
+
- `@gitbutler/design-core/utility/helpers` - Helper utility classes (scrollbar, stacks)
|
|
130
|
+
- `@gitbutler/design-core/utility/layout` - Layout utility classes (spacing, flexbox, positioning)
|
|
84
131
|
|
|
85
132
|
## Included Fonts
|
|
86
133
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitbutler/design-core",
|
|
3
|
-
"version": "1.1
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Design tokens for GitButler applications",
|
|
6
6
|
"keywords": [
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"homepage": "https://github.com/gitbutlerapp/design-tokens",
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
|
-
"url": "https://github.com/gitbutlerapp/design-tokens.git"
|
|
15
|
+
"url": "git+https://github.com/gitbutlerapp/design-tokens.git"
|
|
16
16
|
},
|
|
17
17
|
"main": "./tokens/tokens.css",
|
|
18
18
|
"exports": {
|
|
@@ -24,7 +24,11 @@
|
|
|
24
24
|
"./styles": "./styles/base.css",
|
|
25
25
|
"./styles/base": "./styles/base.css",
|
|
26
26
|
"./styles/reset": "./styles/reset.css",
|
|
27
|
-
"./styles/text": "./styles/text.css"
|
|
27
|
+
"./styles/text": "./styles/text.css",
|
|
28
|
+
"./utility": "./utility/utility.css",
|
|
29
|
+
"./utility/general": "./utility/general.css",
|
|
30
|
+
"./utility/helpers": "./utility/helpers.css",
|
|
31
|
+
"./utility/layout": "./utility/layout.min.css"
|
|
28
32
|
},
|
|
29
33
|
"scripts": {
|
|
30
34
|
"build": "npx tz build",
|
|
@@ -41,6 +45,7 @@
|
|
|
41
45
|
"tokens/",
|
|
42
46
|
"fonts/",
|
|
43
47
|
"styles/",
|
|
48
|
+
"utility/",
|
|
44
49
|
"core.css",
|
|
45
50
|
"README.md"
|
|
46
51
|
],
|
package/styles/base.css
CHANGED
package/styles/text.css
CHANGED
|
@@ -9,63 +9,63 @@
|
|
|
9
9
|
font-weight: var(--text-weight-regular);
|
|
10
10
|
font-size: 0.563rem;
|
|
11
11
|
line-height: var(--text-lineheight-default);
|
|
12
|
-
font-family: var(--
|
|
12
|
+
font-family: var(--font-default);
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
.text-10 {
|
|
16
16
|
font-weight: var(--text-weight-regular);
|
|
17
17
|
font-size: 0.625rem;
|
|
18
18
|
line-height: var(--text-lineheight-default);
|
|
19
|
-
font-family: var(--
|
|
19
|
+
font-family: var(--font-default);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
.text-11 {
|
|
23
23
|
font-weight: var(--text-weight-regular);
|
|
24
24
|
font-size: 0.6875rem;
|
|
25
25
|
line-height: var(--text-lineheight-default);
|
|
26
|
-
font-family: var(--
|
|
26
|
+
font-family: var(--font-default);
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
.text-12 {
|
|
30
30
|
font-weight: var(--text-weight-regular);
|
|
31
31
|
font-size: 0.75rem;
|
|
32
32
|
line-height: var(--text-lineheight-default);
|
|
33
|
-
font-family: var(--
|
|
33
|
+
font-family: var(--font-default);
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
.text-13 {
|
|
37
37
|
font-weight: var(--text-weight-regular);
|
|
38
38
|
font-size: 0.8125rem;
|
|
39
39
|
line-height: var(--text-lineheight-default);
|
|
40
|
-
font-family: var(--
|
|
40
|
+
font-family: var(--font-default);
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
.text-14 {
|
|
44
44
|
font-weight: var(--text-weight-regular);
|
|
45
45
|
font-size: 0.875rem;
|
|
46
46
|
line-height: var(--text-lineheight-default);
|
|
47
|
-
font-family: var(--
|
|
47
|
+
font-family: var(--font-default);
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
.text-15 {
|
|
51
51
|
font-weight: var(--text-weight-regular);
|
|
52
52
|
font-size: 0.938rem;
|
|
53
53
|
line-height: var(--text-lineheight-default);
|
|
54
|
-
font-family: var(--
|
|
54
|
+
font-family: var(--font-default);
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
.text-16 {
|
|
58
58
|
font-weight: var(--text-weight-regular);
|
|
59
59
|
font-size: 1rem;
|
|
60
60
|
line-height: var(--text-lineheight-default);
|
|
61
|
-
font-family: var(--
|
|
61
|
+
font-family: var(--font-default);
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
.text-18 {
|
|
65
65
|
font-weight: var(--text-weight-regular);
|
|
66
66
|
font-size: 1.125rem;
|
|
67
67
|
line-height: var(--text-lineheight-default);
|
|
68
|
-
font-family: var(--
|
|
68
|
+
font-family: var(--font-default);
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
/* text Head Classes */
|
|
@@ -73,21 +73,21 @@
|
|
|
73
73
|
font-weight: var(--text-weight-bold);
|
|
74
74
|
font-size: 1.25rem;
|
|
75
75
|
line-height: var(--text-lineheight-default);
|
|
76
|
-
font-family: var(--
|
|
76
|
+
font-family: var(--font-default);
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
.text-head-22 {
|
|
80
80
|
font-weight: var(--text-weight-bold);
|
|
81
81
|
font-size: 1.375rem;
|
|
82
82
|
line-height: var(--text-lineheight-default);
|
|
83
|
-
font-family: var(--
|
|
83
|
+
font-family: var(--font-default);
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
.text-head-24 {
|
|
87
87
|
font-weight: var(--text-weight-bold);
|
|
88
88
|
font-size: 1.5rem;
|
|
89
89
|
line-height: var(--text-lineheight-default);
|
|
90
|
-
font-family: var(--
|
|
90
|
+
font-family: var(--font-default);
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
/* Serif Classes */
|
|
@@ -95,14 +95,14 @@
|
|
|
95
95
|
font-weight: 400;
|
|
96
96
|
font-size: 2.625rem;
|
|
97
97
|
line-height: var(--text-lineheight-accent);
|
|
98
|
-
font-family: var(--
|
|
98
|
+
font-family: var(--font-accent);
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
.text-serif-32 {
|
|
102
102
|
font-weight: 400;
|
|
103
103
|
font-size: 2rem;
|
|
104
104
|
line-height: var(--text-lineheight-accent);
|
|
105
|
-
font-family: var(--
|
|
105
|
+
font-family: var(--font-accent);
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
/* MODIFIERS */
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/* Border radius */
|
|
2
|
+
.radius-s {
|
|
3
|
+
border-radius: var(--radius-s);
|
|
4
|
+
}
|
|
5
|
+
.radius-m {
|
|
6
|
+
border-radius: var(--radius-m);
|
|
7
|
+
}
|
|
8
|
+
.radius-ml {
|
|
9
|
+
border-radius: var(--radius-ml);
|
|
10
|
+
}
|
|
11
|
+
.radius-l {
|
|
12
|
+
border-radius: var(--radius-l);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/* Background colors */
|
|
16
|
+
.clr-bg-1 {
|
|
17
|
+
background-color: var(--clr-bg-1);
|
|
18
|
+
}
|
|
19
|
+
.clr-bg-1-muted {
|
|
20
|
+
background-color: var(--clr-bg-1-muted);
|
|
21
|
+
}
|
|
22
|
+
.clr-bg-2 {
|
|
23
|
+
background-color: var(--clr-bg-2);
|
|
24
|
+
}
|
|
25
|
+
.clr-bg-2-muted {
|
|
26
|
+
background-color: var(--clr-bg-2-muted);
|
|
27
|
+
}
|
|
28
|
+
.clr-bg-3 {
|
|
29
|
+
background-color: var(--clr-bg-3);
|
|
30
|
+
}
|
|
31
|
+
.clr-bg-3-muted {
|
|
32
|
+
background-color: var(--clr-bg-3-muted);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/* Borders */
|
|
36
|
+
.clr-border-1 {
|
|
37
|
+
border: 1px solid var(--clr-border-1);
|
|
38
|
+
}
|
|
39
|
+
.clr-border-2 {
|
|
40
|
+
border: 1px solid var(--clr-border-2);
|
|
41
|
+
}
|
|
42
|
+
.clr-border-3 {
|
|
43
|
+
border: 1px solid var(--clr-border-3);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/* Text colors */
|
|
47
|
+
.clr-text-1 {
|
|
48
|
+
color: var(--clr-text-1);
|
|
49
|
+
}
|
|
50
|
+
.clr-text-2 {
|
|
51
|
+
color: var(--clr-text-2);
|
|
52
|
+
}
|
|
53
|
+
.clr-text-3 {
|
|
54
|
+
color: var(--clr-text-3);
|
|
55
|
+
}
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
/* scrollbar helpers */
|
|
2
|
+
.hide-native-scrollbar {
|
|
3
|
+
-ms-overflow-style: none;
|
|
4
|
+
scrollbar-width: none;
|
|
5
|
+
|
|
6
|
+
&::-webkit-scrollbar {
|
|
7
|
+
display: none;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
/* custom scrollbar */
|
|
12
|
+
.scrollbar,
|
|
13
|
+
pre {
|
|
14
|
+
&::-webkit-scrollbar {
|
|
15
|
+
width: 14px;
|
|
16
|
+
background-color: transaparent;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
&::-webkit-scrollbar-track {
|
|
20
|
+
background-color: transaparent;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&::-webkit-scrollbar-thumb {
|
|
24
|
+
border: 4px solid rgba(0, 0, 0, 0);
|
|
25
|
+
border-radius: 12px;
|
|
26
|
+
background-clip: padding-box;
|
|
27
|
+
background-color: var(--clr-border-1);
|
|
28
|
+
opacity: 0.3;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&::-webkit-scrollbar-thumb:hover {
|
|
32
|
+
opacity: 0.8;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&::-webkit-scrollbar-button {
|
|
36
|
+
display: none;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&::-webkit-scrollbar-corner {
|
|
40
|
+
background-color: transparent;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.stack-v {
|
|
45
|
+
display: flex;
|
|
46
|
+
flex-direction: column;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.stack-h {
|
|
50
|
+
display: flex;
|
|
51
|
+
flex-direction: row;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.truncate {
|
|
55
|
+
overflow: hidden;
|
|
56
|
+
text-overflow: ellipsis;
|
|
57
|
+
white-space: nowrap;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.no-select {
|
|
61
|
+
cursor: default;
|
|
62
|
+
user-select: none;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.hide-when-empty {
|
|
66
|
+
&:empty {
|
|
67
|
+
display: none;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.no-pointer-events {
|
|
72
|
+
pointer-events: none;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.pointer-events {
|
|
76
|
+
pointer-events: auto;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.underline {
|
|
80
|
+
text-decoration: underline;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.underline-dotted {
|
|
84
|
+
text-decoration: underline dotted;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.underline,
|
|
88
|
+
.underline-dotted {
|
|
89
|
+
text-underline-offset: 3px;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.capitalize {
|
|
93
|
+
display: inline-block;
|
|
94
|
+
}
|
|
95
|
+
.capitalize:first-letter {
|
|
96
|
+
text-transform: capitalize;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
/* OPACITY */
|
|
100
|
+
.op-10 {
|
|
101
|
+
opacity: 0.1;
|
|
102
|
+
}
|
|
103
|
+
.op-20 {
|
|
104
|
+
opacity: 0.2;
|
|
105
|
+
}
|
|
106
|
+
.op-30 {
|
|
107
|
+
opacity: 0.3;
|
|
108
|
+
}
|
|
109
|
+
.op-40 {
|
|
110
|
+
opacity: 0.4;
|
|
111
|
+
}
|
|
112
|
+
.op-50 {
|
|
113
|
+
opacity: 0.5;
|
|
114
|
+
}
|
|
115
|
+
.op-60 {
|
|
116
|
+
opacity: 0.6;
|
|
117
|
+
}
|
|
118
|
+
.op-70 {
|
|
119
|
+
opacity: 0.7;
|
|
120
|
+
}
|
|
121
|
+
.op-80 {
|
|
122
|
+
opacity: 0.8;
|
|
123
|
+
}
|
|
124
|
+
.op-90 {
|
|
125
|
+
opacity: 0.9;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
/* ANIMATION */
|
|
129
|
+
|
|
130
|
+
.wiggle-animation {
|
|
131
|
+
animation: wiggle-animation 0.35s forwards;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
@keyframes wiggle-animation {
|
|
135
|
+
0% {
|
|
136
|
+
transform: translateX(-3px);
|
|
137
|
+
}
|
|
138
|
+
25% {
|
|
139
|
+
transform: translateX(3px);
|
|
140
|
+
}
|
|
141
|
+
50% {
|
|
142
|
+
transform: translateX(-2px);
|
|
143
|
+
}
|
|
144
|
+
75% {
|
|
145
|
+
transform: translateX(2px);
|
|
146
|
+
}
|
|
147
|
+
100% {
|
|
148
|
+
transform: translateX(0);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.highlight-animation {
|
|
153
|
+
animation: highlight-animation 0.5s forwards;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
@keyframes highlight-animation {
|
|
157
|
+
0% {
|
|
158
|
+
transform: translate(0, 0) rotate(0deg);
|
|
159
|
+
box-shadow: 0 0 0 0
|
|
160
|
+
color-mix(in srgb, var(--clr-theme-pop-element), transparent, 0.5);
|
|
161
|
+
}
|
|
162
|
+
12.5% {
|
|
163
|
+
transform: translate(-1px, -1px) rotate(-0.5deg);
|
|
164
|
+
box-shadow: 0 0 0 1px var(--clr-theme-pop-element);
|
|
165
|
+
}
|
|
166
|
+
25% {
|
|
167
|
+
transform: translate(1px, 0px) rotate(0.5deg);
|
|
168
|
+
box-shadow: 0 0 0 1.5px var(--clr-theme-pop-element);
|
|
169
|
+
}
|
|
170
|
+
37.5% {
|
|
171
|
+
transform: translate(-1px, 1px) rotate(-0.3deg);
|
|
172
|
+
box-shadow: 0 0 0 2px var(--clr-theme-pop-element);
|
|
173
|
+
}
|
|
174
|
+
50% {
|
|
175
|
+
transform: translate(1px, -1px) rotate(0.3deg);
|
|
176
|
+
box-shadow: 0 0 0 2px var(--clr-theme-pop-element);
|
|
177
|
+
}
|
|
178
|
+
62.5% {
|
|
179
|
+
transform: translate(-1px, 0px) rotate(-0.2deg);
|
|
180
|
+
box-shadow: 0 0 0 1.5px var(--clr-theme-pop-element);
|
|
181
|
+
}
|
|
182
|
+
75% {
|
|
183
|
+
transform: translate(1px, 1px) rotate(0.2deg);
|
|
184
|
+
box-shadow: 0 0 0 1px var(--clr-theme-pop-element);
|
|
185
|
+
}
|
|
186
|
+
87.5% {
|
|
187
|
+
transform: translate(0px, -1px) rotate(-0.1deg);
|
|
188
|
+
box-shadow: 0 0 0 0.5px var(--clr-theme-pop-element);
|
|
189
|
+
}
|
|
190
|
+
100% {
|
|
191
|
+
transform: translate(0, 0) rotate(0deg);
|
|
192
|
+
box-shadow: 0 0 0 0
|
|
193
|
+
color-mix(in srgb, var(--clr-theme-pop-element), transparent, 0.5);
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
/* ACCESSIBILITY */
|
|
198
|
+
.focus-state {
|
|
199
|
+
outline: none;
|
|
200
|
+
outline-offset: 2px;
|
|
201
|
+
|
|
202
|
+
&:focus-visible {
|
|
203
|
+
outline: 0.094rem solid var(--focus-color);
|
|
204
|
+
}
|
|
205
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/*Spasing*/.gap-2{gap:2px;}.p-2{padding:2px;}.p-l-2{padding-left:2px;}.p-r-2{padding-right:2px;}.p-t-2{padding-top:2px;}.p-b-2{padding-bottom:2px;}.m-2{margin:2px;}.m-l-2{margin-left:2px;}.m-r-2{margin-right:2px;}.m-t-2{margin-top:2px;}.m-b-2{margin-bottom:2px;}.gap-4{gap:4px;}.p-4{padding:4px;}.p-l-4{padding-left:4px;}.p-r-4{padding-right:4px;}.p-t-4{padding-top:4px;}.p-b-4{padding-bottom:4px;}.m-4{margin:4px;}.m-l-4{margin-left:4px;}.m-r-4{margin-right:4px;}.m-t-4{margin-top:4px;}.m-b-4{margin-bottom:4px;}.gap-6{gap:6px;}.p-6{padding:6px;}.p-l-6{padding-left:6px;}.p-r-6{padding-right:6px;}.p-t-6{padding-top:6px;}.p-b-6{padding-bottom:6px;}.m-6{margin:6px;}.m-l-6{margin-left:6px;}.m-r-6{margin-right:6px;}.m-t-6{margin-top:6px;}.m-b-6{margin-bottom:6px;}.gap-8{gap:8px;}.p-8{padding:8px;}.p-l-8{padding-left:8px;}.p-r-8{padding-right:8px;}.p-t-8{padding-top:8px;}.p-b-8{padding-bottom:8px;}.m-8{margin:8px;}.m-l-8{margin-left:8px;}.m-r-8{margin-right:8px;}.m-t-8{margin-top:8px;}.m-b-8{margin-bottom:8px;}.gap-10{gap:10px;}.p-10{padding:10px;}.p-l-10{padding-left:10px;}.p-r-10{padding-right:10px;}.p-t-10{padding-top:10px;}.p-b-10{padding-bottom:10px;}.m-10{margin:10px;}.m-l-10{margin-left:10px;}.m-r-10{margin-right:10px;}.m-t-10{margin-top:10px;}.m-b-10{margin-bottom:10px;}.gap-12{gap:12px;}.p-12{padding:12px;}.p-l-12{padding-left:12px;}.p-r-12{padding-right:12px;}.p-t-12{padding-top:12px;}.p-b-12{padding-bottom:12px;}.m-12{margin:12px;}.m-l-12{margin-left:12px;}.m-r-12{margin-right:12px;}.m-t-12{margin-top:12px;}.m-b-12{margin-bottom:12px;}.gap-14{gap:14px;}.p-14{padding:14px;}.p-l-14{padding-left:14px;}.p-r-14{padding-right:14px;}.p-t-14{padding-top:14px;}.p-b-14{padding-bottom:14px;}.m-14{margin:14px;}.m-l-14{margin-left:14px;}.m-r-14{margin-right:14px;}.m-t-14{margin-top:14px;}.m-b-14{margin-bottom:14px;}.gap-16{gap:16px;}.p-16{padding:16px;}.p-l-16{padding-left:16px;}.p-r-16{padding-right:16px;}.p-t-16{padding-top:16px;}.p-b-16{padding-bottom:16px;}.m-16{margin:16px;}.m-l-16{margin-left:16px;}.m-r-16{margin-right:16px;}.m-t-16{margin-top:16px;}.m-b-16{margin-bottom:16px;}.gap-20{gap:20px;}.p-20{padding:20px;}.p-l-20{padding-left:20px;}.p-r-20{padding-right:20px;}.p-t-20{padding-top:20px;}.p-b-20{padding-bottom:20px;}.m-20{margin:20px;}.m-l-20{margin-left:20px;}.m-r-20{margin-right:20px;}.m-t-20{margin-top:20px;}.m-b-20{margin-bottom:20px;}.gap-24{gap:24px;}.p-24{padding:24px;}.p-l-24{padding-left:24px;}.p-r-24{padding-right:24px;}.p-t-24{padding-top:24px;}.p-b-24{padding-bottom:24px;}.m-24{margin:24px;}.m-l-24{margin-left:24px;}.m-r-24{margin-right:24px;}.m-t-24{margin-top:24px;}.m-b-24{margin-bottom:24px;}.gap-28{gap:28px;}.p-28{padding:28px;}.p-l-28{padding-left:28px;}.p-r-28{padding-right:28px;}.p-t-28{padding-top:28px;}.p-b-28{padding-bottom:28px;}.m-28{margin:28px;}.m-l-28{margin-left:28px;}.m-r-28{margin-right:28px;}.m-t-28{margin-top:28px;}.m-b-28{margin-bottom:28px;}.gap-32{gap:32px;}.p-32{padding:32px;}.p-l-32{padding-left:32px;}.p-r-32{padding-right:32px;}.p-t-32{padding-top:32px;}.p-b-32{padding-bottom:32px;}.m-32{margin:32px;}.m-l-32{margin-left:32px;}.m-r-32{margin-right:32px;}.m-t-32{margin-top:32px;}.m-b-32{margin-bottom:32px;}.gap-36{gap:36px;}.p-36{padding:36px;}.p-l-36{padding-left:36px;}.p-r-36{padding-right:36px;}.p-t-36{padding-top:36px;}.p-b-36{padding-bottom:36px;}.m-36{margin:36px;}.m-l-36{margin-left:36px;}.m-r-36{margin-right:36px;}.m-t-36{margin-top:36px;}.m-b-36{margin-bottom:36px;}.gap-40{gap:40px;}.p-40{padding:40px;}.p-l-40{padding-left:40px;}.p-r-40{padding-right:40px;}.p-t-40{padding-top:40px;}.p-b-40{padding-bottom:40px;}.m-40{margin:40px;}.m-l-40{margin-left:40px;}.m-r-40{margin-right:40px;}.m-t-40{margin-top:40px;}.m-b-40{margin-bottom:40px;}.gap-44{gap:44px;}.p-44{padding:44px;}.p-l-44{padding-left:44px;}.p-r-44{padding-right:44px;}.p-t-44{padding-top:44px;}.p-b-44{padding-bottom:44px;}.m-44{margin:44px;}.m-l-44{margin-left:44px;}.m-r-44{margin-right:44px;}.m-t-44{margin-top:44px;}.m-b-44{margin-bottom:44px;}.gap-48{gap:48px;}.p-48{padding:48px;}.p-l-48{padding-left:48px;}.p-r-48{padding-right:48px;}.p-t-48{padding-top:48px;}.p-b-48{padding-bottom:48px;}.m-48{margin:48px;}.m-l-48{margin-left:48px;}.m-r-48{margin-right:48px;}.m-t-48{margin-top:48px;}.m-b-48{margin-bottom:48px;}/*Position*/.relative{position:relative;}.absolute{position:absolute;}.fixed{position:fixed;}.sticky{position:sticky;}.top-0{top:0;}.bottom-0{bottom:0;}.left-0{left:0;}.right-0{right:0;}/*Size*/.full-width{width:100%;}.full-height{height:100%;}/*Flexbox*/.flex{display:flex;}.flex-col{flex-direction:column;}.items-center{align-items:center;}.justify-center{justify-content:center;}.justify-between{justify-content:space-between;}.justify-end{justify-content:flex-end;}.full-width{width:100%;}.full-height{height:100%;}.flex-1{flex:1;}.flex-2{flex:2;}.flex-3{flex:3;}.flex-4{flex:4;}.flex-5{flex:5;}.flex-shrink-0{flex-shrink:0;}.flex-wrap{flex-wrap:wrap;}.flex-nowrap{flex-wrap:nowrap;}.grow{flex-grow:1;}/*Overflow*/.overflow-hidden{overflow:hidden;}.overflow-auto{overflow:auto;}.overflow-scroll{overflow:scroll;}.overflow-visible{overflow:visible;}/*Text*/.text-center{text-align:center;}.text-left{text-align:left;}.text-right{text-align:right;}.text-nowrap{white-space:nowrap;}
|