@nextrap/style-utils 1.0.10 → 2.0.0
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/.ai-usage-info.md +360 -0
- package/README.md +27 -1
- package/default.scss +5 -0
- package/demo/main.scss +0 -0
- package/ex-01-grid.html +6 -0
- package/index.css +1 -1
- package/index.d.ts +1 -1
- package/index.html +22 -0
- package/index.scss +12 -0
- package/main.ts +3 -0
- package/package.json +13 -3
- package/src/_style-utils.scss +489 -0
- package/src/mixins/_background.scss +56 -0
- package/src/mixins/_border-color.scss +13 -0
- package/src/mixins/_borders.scss +70 -0
- package/src/mixins/_color-scheme.scss +5 -0
- package/src/mixins/_container.scss +14 -0
- package/src/mixins/_dimensions.scss +17 -0
- package/src/mixins/_display.scss +14 -0
- package/src/mixins/_flex.scss +72 -0
- package/src/mixins/_font-utils.scss +43 -0
- package/src/mixins/_grid.scss +103 -0
- package/src/mixins/_index.scss +16 -0
- package/src/mixins/_list-style.scss +54 -0
- package/src/mixins/_spacing-utils.scss +115 -0
- package/src/mixins/_surface.scss +24 -0
- package/src/mixins/_table.scss +35 -0
- package/src/mixins/_text-color.scss +24 -0
- package/src/mixins/_text.scss +28 -0
- package/web-types.json +1740 -0
- /package/{lib → src/lib}/style-utils.d.ts +0 -0
|
@@ -0,0 +1,489 @@
|
|
|
1
|
+
// Central utility class generator. Defining this mixin emits no CSS. Include it
|
|
2
|
+
// at the root for global classes or inside a theme selector for scoped classes.
|
|
3
|
+
|
|
4
|
+
@use './mixins' as u;
|
|
5
|
+
|
|
6
|
+
@mixin style-utils() {
|
|
7
|
+
|
|
8
|
+
// ============================================================
|
|
9
|
+
// Display
|
|
10
|
+
// ============================================================
|
|
11
|
+
.d-none { @include u.d-none(); }
|
|
12
|
+
.d-inline { @include u.d-inline(); }
|
|
13
|
+
.d-inline-block { @include u.d-inline-block(); }
|
|
14
|
+
.d-block { @include u.d-block(); }
|
|
15
|
+
.d-flex { @include u.d-flex(); }
|
|
16
|
+
.d-inline-flex { @include u.d-inline-flex(); }
|
|
17
|
+
.d-grid { @include u.d-grid(); }
|
|
18
|
+
.d-inline-grid { @include u.d-inline-grid(); }
|
|
19
|
+
.d-table { @include u.d-table(); }
|
|
20
|
+
.d-table-row { @include u.d-table-row(); }
|
|
21
|
+
.d-table-cell { @include u.d-table-cell(); }
|
|
22
|
+
|
|
23
|
+
// ============================================================
|
|
24
|
+
// Flex
|
|
25
|
+
// ============================================================
|
|
26
|
+
.flex-column { @include u.flex-column(); }
|
|
27
|
+
.flex-row { @include u.flex-row(); }
|
|
28
|
+
.flex-column-reverse { @include u.flex-column-reverse(); }
|
|
29
|
+
.flex-row-reverse { @include u.flex-row-reverse(); }
|
|
30
|
+
.flex-wrap { @include u.flex-wrap(); }
|
|
31
|
+
.flex-nowrap { @include u.flex-nowrap(); }
|
|
32
|
+
.flex-wrap-reverse { @include u.flex-wrap-reverse(); }
|
|
33
|
+
.justify-content-start { @include u.justify-content-start(); }
|
|
34
|
+
.justify-content-end { @include u.justify-content-end(); }
|
|
35
|
+
.justify-content-center { @include u.justify-content-center(); }
|
|
36
|
+
.justify-content-between { @include u.justify-content-between(); }
|
|
37
|
+
.justify-content-around { @include u.justify-content-around(); }
|
|
38
|
+
.justify-content-evenly { @include u.justify-content-evenly(); }
|
|
39
|
+
.align-items-start { @include u.align-items-start(); }
|
|
40
|
+
.align-items-end { @include u.align-items-end(); }
|
|
41
|
+
.align-items-center { @include u.align-items-center(); }
|
|
42
|
+
.align-items-baseline { @include u.align-items-baseline(); }
|
|
43
|
+
.align-items-stretch { @include u.align-items-stretch(); }
|
|
44
|
+
.align-content-start { @include u.align-content-start(); }
|
|
45
|
+
.align-content-end { @include u.align-content-end(); }
|
|
46
|
+
.align-content-center { @include u.align-content-center(); }
|
|
47
|
+
.align-content-between { @include u.align-content-between(); }
|
|
48
|
+
.align-content-around { @include u.align-content-around(); }
|
|
49
|
+
.align-content-stretch { @include u.align-content-stretch(); }
|
|
50
|
+
.align-self-auto { @include u.align-self-auto(); }
|
|
51
|
+
.align-self-start { @include u.align-self-start(); }
|
|
52
|
+
.align-self-end { @include u.align-self-end(); }
|
|
53
|
+
.align-self-center { @include u.align-self-center(); }
|
|
54
|
+
.align-self-baseline { @include u.align-self-baseline(); }
|
|
55
|
+
.align-self-stretch { @include u.align-self-stretch(); }
|
|
56
|
+
.flex-fill { @include u.flex-fill(); }
|
|
57
|
+
.flex-grow-0 { @include u.flex-grow-0(); }
|
|
58
|
+
.flex-grow-1 { @include u.flex-grow-1(); }
|
|
59
|
+
.flex-shrink-0 { @include u.flex-shrink-0(); }
|
|
60
|
+
.flex-shrink-1 { @include u.flex-shrink-1(); }
|
|
61
|
+
.order-first { @include u.order-first(); }
|
|
62
|
+
.order-0 { @include u.order-0(); }
|
|
63
|
+
.order-1 { @include u.order-1(); }
|
|
64
|
+
.order-2 { @include u.order-2(); }
|
|
65
|
+
.order-3 { @include u.order-3(); }
|
|
66
|
+
.order-4 { @include u.order-4(); }
|
|
67
|
+
.order-5 { @include u.order-5(); }
|
|
68
|
+
.order-last { @include u.order-last(); }
|
|
69
|
+
.gap-0 { @include u.gap-0(); }
|
|
70
|
+
.gap-1 { @include u.gap-1(); }
|
|
71
|
+
.gap-2 { @include u.gap-2(); }
|
|
72
|
+
.gap-3 { @include u.gap-3(); }
|
|
73
|
+
.gap-4 { @include u.gap-4(); }
|
|
74
|
+
.gap-5 { @include u.gap-5(); }
|
|
75
|
+
.gap-x-1 { @include u.gap-x-1(); }
|
|
76
|
+
.gap-x-2 { @include u.gap-x-2(); }
|
|
77
|
+
.gap-x-3 { @include u.gap-x-3(); }
|
|
78
|
+
.gap-x-4 { @include u.gap-x-4(); }
|
|
79
|
+
.gap-x-5 { @include u.gap-x-5(); }
|
|
80
|
+
.gap-y-1 { @include u.gap-y-1(); }
|
|
81
|
+
.gap-y-2 { @include u.gap-y-2(); }
|
|
82
|
+
.gap-y-3 { @include u.gap-y-3(); }
|
|
83
|
+
.gap-y-4 { @include u.gap-y-4(); }
|
|
84
|
+
.gap-y-5 { @include u.gap-y-5(); }
|
|
85
|
+
|
|
86
|
+
// ============================================================
|
|
87
|
+
// Spacing
|
|
88
|
+
// ============================================================
|
|
89
|
+
.m-0 { @include u.m-0(); }
|
|
90
|
+
.m-1 { @include u.m-1(); }
|
|
91
|
+
.m-2 { @include u.m-2(); }
|
|
92
|
+
.m-3 { @include u.m-3(); }
|
|
93
|
+
.m-4 { @include u.m-4(); }
|
|
94
|
+
.m-5 { @include u.m-5(); }
|
|
95
|
+
.m-auto { @include u.m-auto(); }
|
|
96
|
+
.mt-0 { @include u.mt-0(); }
|
|
97
|
+
.mt-1 { @include u.mt-1(); }
|
|
98
|
+
.mt-2 { @include u.mt-2(); }
|
|
99
|
+
.mt-3 { @include u.mt-3(); }
|
|
100
|
+
.mt-4 { @include u.mt-4(); }
|
|
101
|
+
.mt-5 { @include u.mt-5(); }
|
|
102
|
+
.mt-auto { @include u.mt-auto(); }
|
|
103
|
+
.me-0 { @include u.me-0(); }
|
|
104
|
+
.me-1 { @include u.me-1(); }
|
|
105
|
+
.me-2 { @include u.me-2(); }
|
|
106
|
+
.me-3 { @include u.me-3(); }
|
|
107
|
+
.me-4 { @include u.me-4(); }
|
|
108
|
+
.me-5 { @include u.me-5(); }
|
|
109
|
+
.me-auto { @include u.me-auto(); }
|
|
110
|
+
.mb-0 { @include u.mb-0(); }
|
|
111
|
+
.mb-1 { @include u.mb-1(); }
|
|
112
|
+
.mb-2 { @include u.mb-2(); }
|
|
113
|
+
.mb-3 { @include u.mb-3(); }
|
|
114
|
+
.mb-4 { @include u.mb-4(); }
|
|
115
|
+
.mb-5 { @include u.mb-5(); }
|
|
116
|
+
.mb-auto { @include u.mb-auto(); }
|
|
117
|
+
.ms-0 { @include u.ms-0(); }
|
|
118
|
+
.ms-1 { @include u.ms-1(); }
|
|
119
|
+
.ms-2 { @include u.ms-2(); }
|
|
120
|
+
.ms-3 { @include u.ms-3(); }
|
|
121
|
+
.ms-4 { @include u.ms-4(); }
|
|
122
|
+
.ms-5 { @include u.ms-5(); }
|
|
123
|
+
.ms-auto { @include u.ms-auto(); }
|
|
124
|
+
.mx-0 { @include u.mx-0(); }
|
|
125
|
+
.mx-1 { @include u.mx-1(); }
|
|
126
|
+
.mx-2 { @include u.mx-2(); }
|
|
127
|
+
.mx-3 { @include u.mx-3(); }
|
|
128
|
+
.mx-4 { @include u.mx-4(); }
|
|
129
|
+
.mx-5 { @include u.mx-5(); }
|
|
130
|
+
.mx-auto { @include u.mx-auto(); }
|
|
131
|
+
.my-0 { @include u.my-0(); }
|
|
132
|
+
.my-1 { @include u.my-1(); }
|
|
133
|
+
.my-2 { @include u.my-2(); }
|
|
134
|
+
.my-3 { @include u.my-3(); }
|
|
135
|
+
.my-4 { @include u.my-4(); }
|
|
136
|
+
.my-5 { @include u.my-5(); }
|
|
137
|
+
.my-auto { @include u.my-auto(); }
|
|
138
|
+
.p-0 { @include u.p-0(); }
|
|
139
|
+
.p-1 { @include u.p-1(); }
|
|
140
|
+
.p-2 { @include u.p-2(); }
|
|
141
|
+
.p-3 { @include u.p-3(); }
|
|
142
|
+
.p-4 { @include u.p-4(); }
|
|
143
|
+
.p-5 { @include u.p-5(); }
|
|
144
|
+
.p-auto { @include u.p-auto(); }
|
|
145
|
+
.pt-0 { @include u.pt-0(); }
|
|
146
|
+
.pt-1 { @include u.pt-1(); }
|
|
147
|
+
.pt-2 { @include u.pt-2(); }
|
|
148
|
+
.pt-3 { @include u.pt-3(); }
|
|
149
|
+
.pt-4 { @include u.pt-4(); }
|
|
150
|
+
.pt-5 { @include u.pt-5(); }
|
|
151
|
+
.pt-auto { @include u.pt-auto(); }
|
|
152
|
+
.pe-0 { @include u.pe-0(); }
|
|
153
|
+
.pe-1 { @include u.pe-1(); }
|
|
154
|
+
.pe-2 { @include u.pe-2(); }
|
|
155
|
+
.pe-3 { @include u.pe-3(); }
|
|
156
|
+
.pe-4 { @include u.pe-4(); }
|
|
157
|
+
.pe-5 { @include u.pe-5(); }
|
|
158
|
+
.pe-auto { @include u.pe-auto(); }
|
|
159
|
+
.pb-0 { @include u.pb-0(); }
|
|
160
|
+
.pb-1 { @include u.pb-1(); }
|
|
161
|
+
.pb-2 { @include u.pb-2(); }
|
|
162
|
+
.pb-3 { @include u.pb-3(); }
|
|
163
|
+
.pb-4 { @include u.pb-4(); }
|
|
164
|
+
.pb-5 { @include u.pb-5(); }
|
|
165
|
+
.pb-auto { @include u.pb-auto(); }
|
|
166
|
+
.ps-0 { @include u.ps-0(); }
|
|
167
|
+
.ps-1 { @include u.ps-1(); }
|
|
168
|
+
.ps-2 { @include u.ps-2(); }
|
|
169
|
+
.ps-3 { @include u.ps-3(); }
|
|
170
|
+
.ps-4 { @include u.ps-4(); }
|
|
171
|
+
.ps-5 { @include u.ps-5(); }
|
|
172
|
+
.ps-auto { @include u.ps-auto(); }
|
|
173
|
+
.px-0 { @include u.px-0(); }
|
|
174
|
+
.px-1 { @include u.px-1(); }
|
|
175
|
+
.px-2 { @include u.px-2(); }
|
|
176
|
+
.px-3 { @include u.px-3(); }
|
|
177
|
+
.px-4 { @include u.px-4(); }
|
|
178
|
+
.px-5 { @include u.px-5(); }
|
|
179
|
+
.px-auto { @include u.px-auto(); }
|
|
180
|
+
.py-0 { @include u.py-0(); }
|
|
181
|
+
.py-1 { @include u.py-1(); }
|
|
182
|
+
.py-2 { @include u.py-2(); }
|
|
183
|
+
.py-3 { @include u.py-3(); }
|
|
184
|
+
.py-4 { @include u.py-4(); }
|
|
185
|
+
.py-5 { @include u.py-5(); }
|
|
186
|
+
.py-auto { @include u.py-auto(); }
|
|
187
|
+
|
|
188
|
+
// ============================================================
|
|
189
|
+
// Colors
|
|
190
|
+
// ============================================================
|
|
191
|
+
.bg-primary { @include u.bg-primary(); }
|
|
192
|
+
.bg-primary-subtle { @include u.bg-primary-subtle(); }
|
|
193
|
+
.bg-primary-emphasis { @include u.bg-primary-emphasis(); }
|
|
194
|
+
.bg-secondary { @include u.bg-secondary(); }
|
|
195
|
+
.bg-secondary-subtle { @include u.bg-secondary-subtle(); }
|
|
196
|
+
.bg-secondary-emphasis { @include u.bg-secondary-emphasis(); }
|
|
197
|
+
.bg-tertiary { @include u.bg-tertiary(); }
|
|
198
|
+
.bg-tertiary-subtle { @include u.bg-tertiary-subtle(); }
|
|
199
|
+
.bg-tertiary-emphasis { @include u.bg-tertiary-emphasis(); }
|
|
200
|
+
.bg-accent { @include u.bg-accent(); }
|
|
201
|
+
.bg-accent-subtle { @include u.bg-accent-subtle(); }
|
|
202
|
+
.bg-accent-emphasis { @include u.bg-accent-emphasis(); }
|
|
203
|
+
.bg-success { @include u.bg-success(); }
|
|
204
|
+
.bg-success-subtle { @include u.bg-success-subtle(); }
|
|
205
|
+
.bg-success-emphasis { @include u.bg-success-emphasis(); }
|
|
206
|
+
.bg-info { @include u.bg-info(); }
|
|
207
|
+
.bg-info-subtle { @include u.bg-info-subtle(); }
|
|
208
|
+
.bg-info-emphasis { @include u.bg-info-emphasis(); }
|
|
209
|
+
.bg-warning { @include u.bg-warning(); }
|
|
210
|
+
.bg-warning-subtle { @include u.bg-warning-subtle(); }
|
|
211
|
+
.bg-warning-emphasis { @include u.bg-warning-emphasis(); }
|
|
212
|
+
.bg-danger { @include u.bg-danger(); }
|
|
213
|
+
.bg-danger-subtle { @include u.bg-danger-subtle(); }
|
|
214
|
+
.bg-danger-emphasis { @include u.bg-danger-emphasis(); }
|
|
215
|
+
.bg-light { @include u.bg-light(); }
|
|
216
|
+
.bg-light-subtle { @include u.bg-light-subtle(); }
|
|
217
|
+
.bg-light-emphasis { @include u.bg-light-emphasis(); }
|
|
218
|
+
.bg-dark { @include u.bg-dark(); }
|
|
219
|
+
.bg-dark-subtle { @include u.bg-dark-subtle(); }
|
|
220
|
+
.bg-dark-emphasis { @include u.bg-dark-emphasis(); }
|
|
221
|
+
.bg-white { @include u.bg-white(); }
|
|
222
|
+
.bg-black { @include u.bg-black(); }
|
|
223
|
+
|
|
224
|
+
// Deprecated soft aliases
|
|
225
|
+
.bg-soft-primary { @include u.bg-soft-primary(); }
|
|
226
|
+
.bg-soft-accent { @include u.bg-soft-accent(); }
|
|
227
|
+
.bg-soft-secondary { @include u.bg-soft-secondary(); }
|
|
228
|
+
.bg-soft-tertiary { @include u.bg-soft-tertiary(); }
|
|
229
|
+
.bg-soft-success { @include u.bg-soft-success(); }
|
|
230
|
+
.bg-soft-info { @include u.bg-soft-info(); }
|
|
231
|
+
.bg-soft-warning { @include u.bg-soft-warning(); }
|
|
232
|
+
.bg-soft-danger { @include u.bg-soft-danger(); }
|
|
233
|
+
.bg-soft-light { @include u.bg-soft-light(); }
|
|
234
|
+
.bg-soft-dark { @include u.bg-soft-dark(); }
|
|
235
|
+
|
|
236
|
+
.text-primary { @include u.text-primary(); }
|
|
237
|
+
.text-secondary { @include u.text-secondary(); }
|
|
238
|
+
.text-tertiary { @include u.text-tertiary(); }
|
|
239
|
+
.text-accent { @include u.text-accent(); }
|
|
240
|
+
.text-success { @include u.text-success(); }
|
|
241
|
+
.text-info { @include u.text-info(); }
|
|
242
|
+
.text-warning { @include u.text-warning(); }
|
|
243
|
+
.text-danger { @include u.text-danger(); }
|
|
244
|
+
.text-light { @include u.text-light(); }
|
|
245
|
+
.text-dark { @include u.text-dark(); }
|
|
246
|
+
.text-white { @include u.text-white(); }
|
|
247
|
+
.text-black { @include u.text-black(); }
|
|
248
|
+
|
|
249
|
+
.border-color-primary { @include u.border-color-primary(); }
|
|
250
|
+
.border-color-secondary { @include u.border-color-secondary(); }
|
|
251
|
+
.border-color-accent { @include u.border-color-accent(); }
|
|
252
|
+
.border-color-success { @include u.border-color-success(); }
|
|
253
|
+
.border-color-info { @include u.border-color-info(); }
|
|
254
|
+
.border-color-warning { @include u.border-color-warning(); }
|
|
255
|
+
.border-color-danger { @include u.border-color-danger(); }
|
|
256
|
+
.border-color-light { @include u.border-color-light(); }
|
|
257
|
+
.border-color-dark { @include u.border-color-dark(); }
|
|
258
|
+
.border-color-white { @include u.border-color-white(); }
|
|
259
|
+
.border-color-black { @include u.border-color-black(); }
|
|
260
|
+
|
|
261
|
+
.bg-gray-100 { @include u.bg-gray-100(); }
|
|
262
|
+
.bg-gray-200 { @include u.bg-gray-200(); }
|
|
263
|
+
.bg-gray-300 { @include u.bg-gray-300(); }
|
|
264
|
+
.bg-gray-400 { @include u.bg-gray-400(); }
|
|
265
|
+
.bg-gray-500 { @include u.bg-gray-500(); }
|
|
266
|
+
.bg-gray-600 { @include u.bg-gray-600(); }
|
|
267
|
+
.bg-gray-700 { @include u.bg-gray-700(); }
|
|
268
|
+
.bg-gray-800 { @include u.bg-gray-800(); }
|
|
269
|
+
.bg-gray-900 { @include u.bg-gray-900(); }
|
|
270
|
+
|
|
271
|
+
.text-gray-100 { @include u.text-gray-100(); }
|
|
272
|
+
.text-gray-200 { @include u.text-gray-200(); }
|
|
273
|
+
.text-gray-300 { @include u.text-gray-300(); }
|
|
274
|
+
.text-gray-400 { @include u.text-gray-400(); }
|
|
275
|
+
.text-gray-500 { @include u.text-gray-500(); }
|
|
276
|
+
.text-gray-600 { @include u.text-gray-600(); }
|
|
277
|
+
.text-gray-700 { @include u.text-gray-700(); }
|
|
278
|
+
.text-gray-800 { @include u.text-gray-800(); }
|
|
279
|
+
.text-gray-900 { @include u.text-gray-900(); }
|
|
280
|
+
|
|
281
|
+
// ============================================================
|
|
282
|
+
// Font
|
|
283
|
+
// ============================================================
|
|
284
|
+
.fs-1 { @include u.fs-1(); }
|
|
285
|
+
.fs-2 { @include u.fs-2(); }
|
|
286
|
+
.fs-3 { @include u.fs-3(); }
|
|
287
|
+
.fs-4 { @include u.fs-4(); }
|
|
288
|
+
.fs-5 { @include u.fs-5(); }
|
|
289
|
+
.fs-6 { @include u.fs-6(); }
|
|
290
|
+
.text-reset { @include u.text-reset(); }
|
|
291
|
+
.fw-light { @include u.fw-light(); }
|
|
292
|
+
.fw-lighter { @include u.fw-lighter(); }
|
|
293
|
+
.fw-normal { @include u.fw-normal(); }
|
|
294
|
+
.fw-medium { @include u.fw-medium(); }
|
|
295
|
+
.fw-semibold { @include u.fw-semibold(); }
|
|
296
|
+
.fw-bold { @include u.fw-bold(); }
|
|
297
|
+
.fw-bolder { @include u.fw-bolder(); }
|
|
298
|
+
.fst-italic { @include u.fst-italic(); }
|
|
299
|
+
.fst-normal { @include u.fst-normal(); }
|
|
300
|
+
.lh-1 { @include u.lh-1(); }
|
|
301
|
+
.lh-sm { @include u.lh-sm(); }
|
|
302
|
+
.lh-base { @include u.lh-base(); }
|
|
303
|
+
.lh-lg { @include u.lh-lg(); }
|
|
304
|
+
.font-monospace { @include u.font-monospace(); }
|
|
305
|
+
|
|
306
|
+
// ============================================================
|
|
307
|
+
// Text
|
|
308
|
+
// ============================================================
|
|
309
|
+
.text-start { @include u.text-start(); }
|
|
310
|
+
.text-end { @include u.text-end(); }
|
|
311
|
+
.text-center { @include u.text-center(); }
|
|
312
|
+
.text-wrap { @include u.text-wrap(); }
|
|
313
|
+
.text-nowrap { @include u.text-nowrap(); }
|
|
314
|
+
.text-break { @include u.text-break(); }
|
|
315
|
+
.text-truncate { @include u.text-truncate(); }
|
|
316
|
+
.text-lowercase { @include u.text-lowercase(); }
|
|
317
|
+
.text-uppercase { @include u.text-uppercase(); }
|
|
318
|
+
.text-capitalize { @include u.text-capitalize(); }
|
|
319
|
+
.text-decoration-none { @include u.text-decoration-none(); }
|
|
320
|
+
.text-decoration-underline { @include u.text-decoration-underline(); }
|
|
321
|
+
.text-decoration-line-through { @include u.text-decoration-line-through(); }
|
|
322
|
+
|
|
323
|
+
// ============================================================
|
|
324
|
+
// Borders
|
|
325
|
+
// ============================================================
|
|
326
|
+
.border { @include u.border(); }
|
|
327
|
+
.border-top { @include u.border-top(); }
|
|
328
|
+
.border-end { @include u.border-end(); }
|
|
329
|
+
.border-bottom { @include u.border-bottom(); }
|
|
330
|
+
.border-start { @include u.border-start(); }
|
|
331
|
+
.border-0 { @include u.border-0(); }
|
|
332
|
+
.border-top-0 { @include u.border-top-0(); }
|
|
333
|
+
.border-end-0 { @include u.border-end-0(); }
|
|
334
|
+
.border-bottom-0 { @include u.border-bottom-0(); }
|
|
335
|
+
.border-start-0 { @include u.border-start-0(); }
|
|
336
|
+
.border-1 { @include u.border-1(); }
|
|
337
|
+
.border-2 { @include u.border-2(); }
|
|
338
|
+
.border-3 { @include u.border-3(); }
|
|
339
|
+
.border-4 { @include u.border-4(); }
|
|
340
|
+
.border-5 { @include u.border-5(); }
|
|
341
|
+
.border-primary { @include u.border-primary(); }
|
|
342
|
+
.border-secondary { @include u.border-secondary(); }
|
|
343
|
+
.border-accent { @include u.border-accent(); }
|
|
344
|
+
.border-success { @include u.border-success(); }
|
|
345
|
+
.border-info { @include u.border-info(); }
|
|
346
|
+
.border-warning { @include u.border-warning(); }
|
|
347
|
+
.border-danger { @include u.border-danger(); }
|
|
348
|
+
.border-light { @include u.border-light(); }
|
|
349
|
+
.border-dark { @include u.border-dark(); }
|
|
350
|
+
.border-white { @include u.border-white(); }
|
|
351
|
+
.border-black { @include u.border-black(); }
|
|
352
|
+
.border-opacity-10 { @include u.border-opacity-10(); }
|
|
353
|
+
.border-opacity-25 { @include u.border-opacity-25(); }
|
|
354
|
+
.border-opacity-50 { @include u.border-opacity-50(); }
|
|
355
|
+
.border-opacity-75 { @include u.border-opacity-75(); }
|
|
356
|
+
.border-opacity-100 { @include u.border-opacity-100(); }
|
|
357
|
+
.rounded { @include u.rounded(); }
|
|
358
|
+
.rounded-0 { @include u.rounded-0(); }
|
|
359
|
+
.rounded-1 { @include u.rounded-1(); }
|
|
360
|
+
.rounded-2 { @include u.rounded-2(); }
|
|
361
|
+
.rounded-3 { @include u.rounded-3(); }
|
|
362
|
+
.rounded-4 { @include u.rounded-4(); }
|
|
363
|
+
.rounded-5 { @include u.rounded-5(); }
|
|
364
|
+
.rounded-circle { @include u.rounded-circle(); }
|
|
365
|
+
.rounded-pill { @include u.rounded-pill(); }
|
|
366
|
+
|
|
367
|
+
// ============================================================
|
|
368
|
+
// Dimensions
|
|
369
|
+
// ============================================================
|
|
370
|
+
.w-100 { @include u.w-100(); }
|
|
371
|
+
.w-75 { @include u.w-75(); }
|
|
372
|
+
.w-50 { @include u.w-50(); }
|
|
373
|
+
.w-25 { @include u.w-25(); }
|
|
374
|
+
.w-auto { @include u.w-auto(); }
|
|
375
|
+
.h-100 { @include u.h-100(); }
|
|
376
|
+
.h-75 { @include u.h-75(); }
|
|
377
|
+
.h-50 { @include u.h-50(); }
|
|
378
|
+
.h-25 { @include u.h-25(); }
|
|
379
|
+
.h-auto { @include u.h-auto(); }
|
|
380
|
+
.vw-100 { @include u.vw-100(); }
|
|
381
|
+
.vh-100 { @include u.vh-100(); }
|
|
382
|
+
|
|
383
|
+
// ============================================================
|
|
384
|
+
// Container
|
|
385
|
+
// ============================================================
|
|
386
|
+
.container { @include u.container(); }
|
|
387
|
+
.container-fluid { @include u.container-fluid(); }
|
|
388
|
+
|
|
389
|
+
// ============================================================
|
|
390
|
+
// Row / columns
|
|
391
|
+
// ============================================================
|
|
392
|
+
.row {
|
|
393
|
+
@include u.row();
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.row-cols-1 { @include u.row-cols-1(); }
|
|
397
|
+
.row-cols-2 { @include u.row-cols-2(); }
|
|
398
|
+
.row-cols-3 { @include u.row-cols-3(); }
|
|
399
|
+
.row-cols-4 { @include u.row-cols-4(); }
|
|
400
|
+
.row-cols-5 { @include u.row-cols-5(); }
|
|
401
|
+
.row-cols-6 { @include u.row-cols-6(); }
|
|
402
|
+
|
|
403
|
+
.col-auto { @include u.col-auto(); }
|
|
404
|
+
.col { @include u.col(); }
|
|
405
|
+
.col-1 { @include u.col-1(); }
|
|
406
|
+
.col-2 { @include u.col-2(); }
|
|
407
|
+
.col-3 { @include u.col-3(); }
|
|
408
|
+
.col-4 { @include u.col-4(); }
|
|
409
|
+
.col-5 { @include u.col-5(); }
|
|
410
|
+
.col-6 { @include u.col-6(); }
|
|
411
|
+
.col-7 { @include u.col-7(); }
|
|
412
|
+
.col-8 { @include u.col-8(); }
|
|
413
|
+
.col-9 { @include u.col-9(); }
|
|
414
|
+
.col-10 { @include u.col-10(); }
|
|
415
|
+
.col-11 { @include u.col-11(); }
|
|
416
|
+
.col-12 { @include u.col-12(); }
|
|
417
|
+
|
|
418
|
+
.offset-1 { @include u.offset-1(); }
|
|
419
|
+
.offset-2 { @include u.offset-2(); }
|
|
420
|
+
.offset-3 { @include u.offset-3(); }
|
|
421
|
+
.offset-4 { @include u.offset-4(); }
|
|
422
|
+
.offset-5 { @include u.offset-5(); }
|
|
423
|
+
.offset-6 { @include u.offset-6(); }
|
|
424
|
+
.offset-7 { @include u.offset-7(); }
|
|
425
|
+
.offset-8 { @include u.offset-8(); }
|
|
426
|
+
.offset-9 { @include u.offset-9(); }
|
|
427
|
+
.offset-10 { @include u.offset-10(); }
|
|
428
|
+
.offset-11 { @include u.offset-11(); }
|
|
429
|
+
.offset-12 { @include u.offset-12(); }
|
|
430
|
+
|
|
431
|
+
.g-0 { @include u.g-0(); }
|
|
432
|
+
.gx-0 { @include u.gx-0(); }
|
|
433
|
+
.gy-0 { @include u.gy-0(); }
|
|
434
|
+
.g-1 { @include u.g-1(); }
|
|
435
|
+
.gx-1 { @include u.gx-1(); }
|
|
436
|
+
.gy-1 { @include u.gy-1(); }
|
|
437
|
+
.g-2 { @include u.g-2(); }
|
|
438
|
+
.gx-2 { @include u.gx-2(); }
|
|
439
|
+
.gy-2 { @include u.gy-2(); }
|
|
440
|
+
.g-3 { @include u.g-3(); }
|
|
441
|
+
.gx-3 { @include u.gx-3(); }
|
|
442
|
+
.gy-3 { @include u.gy-3(); }
|
|
443
|
+
.g-4 { @include u.g-4(); }
|
|
444
|
+
.gx-4 { @include u.gx-4(); }
|
|
445
|
+
.gy-4 { @include u.gy-4(); }
|
|
446
|
+
.g-5 { @include u.g-5(); }
|
|
447
|
+
.gx-5 { @include u.gx-5(); }
|
|
448
|
+
.gy-5 { @include u.gy-5(); }
|
|
449
|
+
.g-6 { @include u.g-6(); }
|
|
450
|
+
.gx-6 { @include u.gx-6(); }
|
|
451
|
+
.gy-6 { @include u.gy-6(); }
|
|
452
|
+
|
|
453
|
+
// ============================================================
|
|
454
|
+
// List styles
|
|
455
|
+
// ============================================================
|
|
456
|
+
html ul.list-unstyled { @include u.list-unstyled(); }
|
|
457
|
+
html ul.list-inline { @include u.list-inline(); }
|
|
458
|
+
html ul.list-checked { @include u.list-checked(); }
|
|
459
|
+
|
|
460
|
+
// ============================================================
|
|
461
|
+
// Table
|
|
462
|
+
// ============================================================
|
|
463
|
+
.table { @include u.table(); }
|
|
464
|
+
.table-bordered { @include u.table-bordered(); }
|
|
465
|
+
|
|
466
|
+
// ============================================================
|
|
467
|
+
// Semantic surfaces
|
|
468
|
+
// ============================================================
|
|
469
|
+
.surface-primary { @include u.surface-primary(); }
|
|
470
|
+
.surface-secondary { @include u.surface-secondary(); }
|
|
471
|
+
.surface-tertiary { @include u.surface-tertiary(); }
|
|
472
|
+
.surface-accent { @include u.surface-accent(); }
|
|
473
|
+
.surface-success { @include u.surface-success(); }
|
|
474
|
+
.surface-info { @include u.surface-info(); }
|
|
475
|
+
.surface-warning { @include u.surface-warning(); }
|
|
476
|
+
.surface-danger { @include u.surface-danger(); }
|
|
477
|
+
.surface-light { @include u.surface-light(); }
|
|
478
|
+
.surface-dark { @include u.surface-dark(); }
|
|
479
|
+
.surface-white { @include u.surface-white(); }
|
|
480
|
+
.surface-black { @include u.surface-black(); }
|
|
481
|
+
|
|
482
|
+
// ============================================================
|
|
483
|
+
// Color scheme
|
|
484
|
+
// ============================================================
|
|
485
|
+
.scheme-light { @include u.scheme-light(); }
|
|
486
|
+
.scheme-dark { @include u.scheme-dark(); }
|
|
487
|
+
.scheme-auto { @include u.scheme-auto(); }
|
|
488
|
+
|
|
489
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
// Background utility mixins — each mixin styles the current selector.
|
|
2
|
+
|
|
3
|
+
@mixin bg-primary() { background: var(--nt-primary) !important; }
|
|
4
|
+
@mixin bg-primary-subtle() { background: var(--nt-primary-subtle) !important; }
|
|
5
|
+
@mixin bg-primary-emphasis() { background: var(--nt-primary-emphasis) !important; }
|
|
6
|
+
@mixin bg-secondary() { background: var(--nt-secondary) !important; }
|
|
7
|
+
@mixin bg-secondary-subtle() { background: var(--nt-secondary-subtle) !important; }
|
|
8
|
+
@mixin bg-secondary-emphasis() { background: var(--nt-secondary-emphasis) !important; }
|
|
9
|
+
@mixin bg-tertiary() { background: var(--nt-tertiary) !important; }
|
|
10
|
+
@mixin bg-tertiary-subtle() { background: var(--nt-tertiary-subtle) !important; }
|
|
11
|
+
@mixin bg-tertiary-emphasis() { background: var(--nt-tertiary-emphasis) !important; }
|
|
12
|
+
@mixin bg-accent() { background: var(--nt-accent) !important; }
|
|
13
|
+
@mixin bg-accent-subtle() { background: var(--nt-accent-subtle) !important; }
|
|
14
|
+
@mixin bg-accent-emphasis() { background: var(--nt-accent-emphasis) !important; }
|
|
15
|
+
@mixin bg-success() { background: var(--nt-success) !important; }
|
|
16
|
+
@mixin bg-success-subtle() { background: var(--nt-success-subtle) !important; }
|
|
17
|
+
@mixin bg-success-emphasis() { background: var(--nt-success-emphasis) !important; }
|
|
18
|
+
@mixin bg-info() { background: var(--nt-info) !important; }
|
|
19
|
+
@mixin bg-info-subtle() { background: var(--nt-info-subtle) !important; }
|
|
20
|
+
@mixin bg-info-emphasis() { background: var(--nt-info-emphasis) !important; }
|
|
21
|
+
@mixin bg-warning() { background: var(--nt-warning) !important; }
|
|
22
|
+
@mixin bg-warning-subtle() { background: var(--nt-warning-subtle) !important; }
|
|
23
|
+
@mixin bg-warning-emphasis() { background: var(--nt-warning-emphasis) !important; }
|
|
24
|
+
@mixin bg-danger() { background: var(--nt-danger) !important; }
|
|
25
|
+
@mixin bg-danger-subtle() { background: var(--nt-danger-subtle) !important; }
|
|
26
|
+
@mixin bg-danger-emphasis() { background: var(--nt-danger-emphasis) !important; }
|
|
27
|
+
@mixin bg-light() { background: var(--nt-light) !important; }
|
|
28
|
+
@mixin bg-light-subtle() { background: var(--nt-light-subtle) !important; }
|
|
29
|
+
@mixin bg-light-emphasis() { background: var(--nt-light-emphasis) !important; }
|
|
30
|
+
@mixin bg-dark() { background: var(--nt-dark) !important; }
|
|
31
|
+
@mixin bg-dark-subtle() { background: var(--nt-dark-subtle) !important; }
|
|
32
|
+
@mixin bg-dark-emphasis() { background: var(--nt-dark-emphasis) !important; }
|
|
33
|
+
@mixin bg-white() { background: var(--nt-white) !important; }
|
|
34
|
+
@mixin bg-black() { background: var(--nt-black) !important; }
|
|
35
|
+
|
|
36
|
+
// Deprecated soft aliases kept for backward compatibility.
|
|
37
|
+
@mixin bg-soft-primary() { background: var(--nt-primary-subtle) !important; }
|
|
38
|
+
@mixin bg-soft-accent() { background: var(--nt-accent-subtle) !important; }
|
|
39
|
+
@mixin bg-soft-secondary() { background: var(--nt-secondary-subtle) !important; }
|
|
40
|
+
@mixin bg-soft-tertiary() { background: var(--nt-tertiary-subtle) !important; }
|
|
41
|
+
@mixin bg-soft-success() { background: var(--nt-success-subtle) !important; }
|
|
42
|
+
@mixin bg-soft-info() { background: var(--nt-info-subtle) !important; }
|
|
43
|
+
@mixin bg-soft-warning() { background: var(--nt-warning-subtle) !important; }
|
|
44
|
+
@mixin bg-soft-danger() { background: var(--nt-danger-subtle) !important; }
|
|
45
|
+
@mixin bg-soft-light() { background: var(--nt-light-subtle) !important; }
|
|
46
|
+
@mixin bg-soft-dark() { background: var(--nt-dark-subtle) !important; }
|
|
47
|
+
|
|
48
|
+
@mixin bg-gray-100() { background: var(--nt-gray-100) !important; }
|
|
49
|
+
@mixin bg-gray-200() { background: var(--nt-gray-200) !important; }
|
|
50
|
+
@mixin bg-gray-300() { background: var(--nt-gray-300) !important; }
|
|
51
|
+
@mixin bg-gray-400() { background: var(--nt-gray-400) !important; }
|
|
52
|
+
@mixin bg-gray-500() { background: var(--nt-gray-500) !important; }
|
|
53
|
+
@mixin bg-gray-600() { background: var(--nt-gray-600) !important; }
|
|
54
|
+
@mixin bg-gray-700() { background: var(--nt-gray-700) !important; }
|
|
55
|
+
@mixin bg-gray-800() { background: var(--nt-gray-800) !important; }
|
|
56
|
+
@mixin bg-gray-900() { background: var(--nt-gray-900) !important; }
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// Border color utility mixins — each mixin styles the current selector.
|
|
2
|
+
|
|
3
|
+
@mixin border-color-primary() { --border-color: var(--nt-primary) !important; border-color: var(--nt-primary) !important; }
|
|
4
|
+
@mixin border-color-secondary() { --border-color: var(--nt-secondary) !important; border-color: var(--nt-secondary) !important; }
|
|
5
|
+
@mixin border-color-accent() { --border-color: var(--nt-accent) !important; border-color: var(--nt-accent) !important; }
|
|
6
|
+
@mixin border-color-success() { --border-color: var(--nt-success) !important; border-color: var(--nt-success) !important; }
|
|
7
|
+
@mixin border-color-info() { --border-color: var(--nt-info) !important; border-color: var(--nt-info) !important; }
|
|
8
|
+
@mixin border-color-warning() { --border-color: var(--nt-warning) !important; border-color: var(--nt-warning) !important; }
|
|
9
|
+
@mixin border-color-danger() { --border-color: var(--nt-danger) !important; border-color: var(--nt-danger) !important; }
|
|
10
|
+
@mixin border-color-light() { --border-color: var(--nt-light) !important; border-color: var(--nt-light) !important; }
|
|
11
|
+
@mixin border-color-dark() { --border-color: var(--nt-dark) !important; border-color: var(--nt-dark) !important; }
|
|
12
|
+
@mixin border-color-white() { --border-color: var(--nt-white) !important; border-color: var(--nt-white) !important; }
|
|
13
|
+
@mixin border-color-black() { --border-color: var(--nt-black) !important; border-color: var(--nt-black) !important; }
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
// Border utility mixins — each mixin styles the current selector.
|
|
2
|
+
// Classes are generated in default.scss from these same mixins.
|
|
3
|
+
|
|
4
|
+
@mixin border() {
|
|
5
|
+
--border-width: var(--nt-border-width, 1px);
|
|
6
|
+
--border-style: solid;
|
|
7
|
+
--border-color: var(--nt-primary);
|
|
8
|
+
border: var(--border-width) var(--border-style) var(--border-color) !important;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@mixin border-top() {
|
|
12
|
+
border-top: var(--nt-border-width) solid
|
|
13
|
+
rgb(from var(--border-color, var(--nt-dark)) r g b / var(--border-opacity, 1)) !important;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@mixin border-end() {
|
|
17
|
+
border-inline-end: var(--nt-border-width) solid
|
|
18
|
+
rgb(from var(--border-color, var(--nt-dark)) r g b / var(--border-opacity, 1)) !important;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@mixin border-bottom() {
|
|
22
|
+
border-bottom: var(--nt-border-width) solid
|
|
23
|
+
rgb(from var(--border-color, var(--nt-dark)) r g b / var(--border-opacity, 1)) !important;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
@mixin border-start() {
|
|
27
|
+
border-inline-start: var(--nt-border-width) solid
|
|
28
|
+
rgb(from var(--border-color, var(--nt-dark)) r g b / var(--border-opacity, 1)) !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@mixin border-0() { border: 0 !important; }
|
|
32
|
+
@mixin border-top-0() { border-top: 0 !important; }
|
|
33
|
+
@mixin border-end-0() { border-inline-end: 0 !important; }
|
|
34
|
+
@mixin border-bottom-0() { border-bottom: 0 !important; }
|
|
35
|
+
@mixin border-start-0() { border-inline-start: 0 !important; }
|
|
36
|
+
|
|
37
|
+
@mixin border-1() { border-width: 1px !important; }
|
|
38
|
+
@mixin border-2() { border-width: 2px !important; }
|
|
39
|
+
@mixin border-3() { border-width: 3px !important; }
|
|
40
|
+
@mixin border-4() { border-width: 4px !important; }
|
|
41
|
+
@mixin border-5() { border-width: 5px !important; }
|
|
42
|
+
|
|
43
|
+
@mixin border-primary() { --border-color: rgb(from var(--nt-primary) r g b / var(--border-opacity, 1)) !important; }
|
|
44
|
+
@mixin border-secondary() { --border-color: rgb(from var(--nt-secondary) r g b / var(--border-opacity, 1)) !important; }
|
|
45
|
+
@mixin border-accent() { --border-color: rgb(from var(--nt-accent) r g b / var(--border-opacity, 1)) !important; }
|
|
46
|
+
@mixin border-success() { --border-color: rgb(from var(--nt-success) r g b / var(--border-opacity, 1)) !important; }
|
|
47
|
+
@mixin border-info() { --border-color: rgb(from var(--nt-info) r g b / var(--border-opacity, 1)) !important; }
|
|
48
|
+
@mixin border-warning() { --border-color: rgb(from var(--nt-warning) r g b / var(--border-opacity, 1)) !important; }
|
|
49
|
+
@mixin border-danger() { --border-color: rgb(from var(--nt-danger) r g b / var(--border-opacity, 1)) !important; }
|
|
50
|
+
@mixin border-light() { --border-color: rgb(from var(--nt-light) r g b / var(--border-opacity, 1)) !important; }
|
|
51
|
+
@mixin border-dark() { --border-color: rgb(from var(--nt-dark) r g b / var(--border-opacity, 1)) !important; }
|
|
52
|
+
@mixin border-white() { --border-color: rgb(from var(--nt-white) r g b / var(--border-opacity, 1)) !important; }
|
|
53
|
+
@mixin border-black() { --border-color: rgb(from var(--nt-black) r g b / var(--border-opacity, 1)) !important; }
|
|
54
|
+
|
|
55
|
+
@mixin border-opacity-10() { --border-opacity: 0.1; }
|
|
56
|
+
@mixin border-opacity-25() { --border-opacity: 0.25; }
|
|
57
|
+
@mixin border-opacity-50() { --border-opacity: 0.5; }
|
|
58
|
+
@mixin border-opacity-75() { --border-opacity: 0.75; }
|
|
59
|
+
@mixin border-opacity-100() { --border-opacity: 1; }
|
|
60
|
+
|
|
61
|
+
// Border radius
|
|
62
|
+
@mixin rounded() { border-radius: var(--nt-border-radius) !important; }
|
|
63
|
+
@mixin rounded-0() { border-radius: 0 !important; }
|
|
64
|
+
@mixin rounded-1() { border-radius: calc(var(--nt-border-radius) * 0.25) !important; }
|
|
65
|
+
@mixin rounded-2() { border-radius: calc(var(--nt-border-radius) * 0.5) !important; }
|
|
66
|
+
@mixin rounded-3() { border-radius: calc(var(--nt-border-radius) * 1) !important; }
|
|
67
|
+
@mixin rounded-4() { border-radius: calc(var(--nt-border-radius) * 1.5) !important; }
|
|
68
|
+
@mixin rounded-5() { border-radius: calc(var(--nt-border-radius) * 3) !important; }
|
|
69
|
+
@mixin rounded-circle() { border-radius: 50% !important; }
|
|
70
|
+
@mixin rounded-pill() { border-radius: 50rem !important; }
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Container utility mixins — each mixin styles the current selector.
|
|
2
|
+
// Opinionated multi-property container patterns live in @nextrap/style-elements.
|
|
3
|
+
// These atomic variants use only the CSS custom property variable.
|
|
4
|
+
// Classes are generated in default.scss from these same mixins.
|
|
5
|
+
|
|
6
|
+
@mixin container() {
|
|
7
|
+
width: var(--nt-container-width);
|
|
8
|
+
margin: 0 auto;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@mixin container-fluid() {
|
|
12
|
+
width: 100%;
|
|
13
|
+
margin: 0 auto;
|
|
14
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// Dimension utility mixins — each mixin styles the current selector.
|
|
2
|
+
// Classes are generated in default.scss from these same mixins.
|
|
3
|
+
|
|
4
|
+
@mixin w-100() { width: 100% !important; }
|
|
5
|
+
@mixin w-75() { width: 75% !important; }
|
|
6
|
+
@mixin w-50() { width: 50% !important; }
|
|
7
|
+
@mixin w-25() { width: 25% !important; }
|
|
8
|
+
@mixin w-auto() { width: auto !important; }
|
|
9
|
+
|
|
10
|
+
@mixin h-100() { height: 100% !important; }
|
|
11
|
+
@mixin h-75() { height: 75% !important; }
|
|
12
|
+
@mixin h-50() { height: 50% !important; }
|
|
13
|
+
@mixin h-25() { height: 25% !important; }
|
|
14
|
+
@mixin h-auto() { height: auto !important; }
|
|
15
|
+
|
|
16
|
+
@mixin vw-100() { width: 100vw !important; }
|
|
17
|
+
@mixin vh-100() { height: 100vh !important; }
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Display utility mixins — each mixin styles the current selector.
|
|
2
|
+
// Classes are generated in default.scss from these same mixins.
|
|
3
|
+
|
|
4
|
+
@mixin d-none() { display: none !important; }
|
|
5
|
+
@mixin d-inline() { display: inline !important; }
|
|
6
|
+
@mixin d-inline-block() { display: inline-block !important; }
|
|
7
|
+
@mixin d-block() { display: block !important; }
|
|
8
|
+
@mixin d-flex() { display: flex !important; }
|
|
9
|
+
@mixin d-inline-flex() { display: inline-flex !important; }
|
|
10
|
+
@mixin d-grid() { display: grid !important; }
|
|
11
|
+
@mixin d-inline-grid() { display: inline-grid !important; }
|
|
12
|
+
@mixin d-table() { display: table !important; }
|
|
13
|
+
@mixin d-table-row() { display: table-row !important; }
|
|
14
|
+
@mixin d-table-cell() { display: table-cell !important; }
|