tide-design-system 2.1.11 → 2.1.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/.storybook/main.ts +1 -1
- package/dist/IconVerified-000f615f.js +20 -0
- package/dist/IconVerified-b71255f2.cjs +2 -0
- package/dist/css/dynamic-buttons.css +279 -0
- package/dist/css/dynamic-utilities.css +123 -0
- package/dist/css/main.css +4 -0
- package/dist/css/utilities-lg.css +402 -0
- package/dist/css/utilities-md.css +404 -0
- package/dist/css/utilities-sm.css +402 -0
- package/dist/css/utilities-xl.css +402 -0
- package/dist/css/utilities.css +4 -1520
- package/dist/css/variables.css +7 -15
- package/dist/style.css +1 -1
- package/dist/tide-design-system.cjs +2 -2
- package/dist/tide-design-system.esm.d.ts +112 -127
- package/dist/tide-design-system.esm.js +853 -866
- package/index.ts +2 -8
- package/package.json +1 -1
- package/src/assets/css/dynamic-buttons.css +279 -0
- package/src/assets/css/dynamic-utilities.css +123 -0
- package/src/assets/css/main.css +4 -0
- package/src/assets/css/utilities-lg.css +402 -0
- package/src/assets/css/utilities-md.css +404 -0
- package/src/assets/css/utilities-sm.css +402 -0
- package/src/assets/css/utilities-xl.css +402 -0
- package/src/assets/css/utilities.css +4 -1520
- package/src/assets/css/variables.css +7 -15
- package/src/assets/svg/icons/IconVerified.svg +1 -0
- package/src/components/TideAccordionItem.vue +8 -6
- package/src/components/TideAlert.vue +2 -2
- package/src/components/TideBadge.vue +17 -6
- package/src/components/TideBadgeTrustedPartner.vue +2 -2
- package/src/components/TideBadgeVerifiedVehicle.vue +32 -0
- package/src/components/TideBreadCrumbs.vue +3 -3
- package/src/components/TideButton.vue +1 -1
- package/src/components/TideButtonPagination.vue +1 -1
- package/src/components/TideButtonSegmented.vue +4 -3
- package/src/components/TideChipAction.vue +1 -2
- package/src/components/TideChipFilter.vue +2 -3
- package/src/components/TideChipInput.vue +1 -2
- package/src/components/TideColumns.vue +1 -1
- package/src/components/TideIndicator.vue +14 -18
- package/src/components/TideInputCheckbox.vue +6 -1
- package/src/components/TideInputRadio.vue +14 -2
- package/src/components/TideInputSelect.vue +3 -4
- package/src/components/TideInputText.vue +17 -6
- package/src/components/TideInputTextarea.vue +3 -15
- package/src/components/TideLink.vue +1 -3
- package/src/components/TideSeoLinks.vue +2 -2
- package/src/stories/FoundationsShadow.stories.ts +27 -8
- package/src/stories/TideBadge.stories.ts +13 -2
- package/src/stories/TideBadgeVerifiedVehicle.stories.ts +20 -0
- package/src/types/Badge.ts +0 -14
- package/src/types/Styles.ts +1 -0
- package/dist/IconVerified-04c12500.cjs +0 -2
- package/dist/IconVerified-a78449ea.js +0 -16
- package/src/components/TideBadgePremium.vue +0 -31
- package/src/stories/TideBadgePremium.stories.ts +0 -31
|
@@ -0,0 +1,402 @@
|
|
|
1
|
+
@media (min-width: 768px) {
|
|
2
|
+
/* Reusable CSS Utility Library */
|
|
3
|
+
/* Position */
|
|
4
|
+
.sm-tide-position-absolute {position: absolute;}
|
|
5
|
+
.sm-tide-position-fixed {position: fixed;}
|
|
6
|
+
.sm-tide-position-relative {position: relative;}
|
|
7
|
+
.sm-tide-position-static {position: static;}
|
|
8
|
+
.sm-tide-position-sticky {position: sticky;}
|
|
9
|
+
|
|
10
|
+
.sm-tide-top-0 {top: 0;}
|
|
11
|
+
.sm-tide-right-0 {right: 0;}
|
|
12
|
+
.sm-tide-bottom-0 {bottom: 0;}
|
|
13
|
+
.sm-tide-left-0 {left: 0;}
|
|
14
|
+
|
|
15
|
+
/* Display */
|
|
16
|
+
.sm-tide-display-block {display: block;}
|
|
17
|
+
.sm-tide-display-contents {display: contents;}
|
|
18
|
+
.sm-tide-display-flex {display: flex;}
|
|
19
|
+
.sm-tide-display-grid {display: grid;}
|
|
20
|
+
.sm-tide-display-initial {display: initial;}
|
|
21
|
+
.sm-tide-display-inline {display: inline;}
|
|
22
|
+
.sm-tide-display-inline-block {display: inline-block;}
|
|
23
|
+
.sm-tide-display-inline-flex {display: inline-flex;}
|
|
24
|
+
.sm-tide-display-none {display: none;}
|
|
25
|
+
|
|
26
|
+
/* Flex Box */
|
|
27
|
+
.sm-tide-flex-column {flex-direction: column;}
|
|
28
|
+
.sm-tide-flex-column-reverse {flex-direction: column-reverse;}
|
|
29
|
+
.sm-tide-flex-row {flex-direction: row;}
|
|
30
|
+
.sm-tide-flex-row-reverse {flex-direction: row-reverse;}
|
|
31
|
+
|
|
32
|
+
.sm-tide-grow {flex-grow: 1;}
|
|
33
|
+
.sm-tide-grow-none {flex-grow: 0;}
|
|
34
|
+
|
|
35
|
+
.sm-tide-shrink {flex-shrink: 1;}
|
|
36
|
+
.sm-tide-shrink-none {flex-shrink: 0;}
|
|
37
|
+
|
|
38
|
+
.sm-tide-flex-wrap {flex-wrap: wrap;}
|
|
39
|
+
|
|
40
|
+
.sm-tide-axis1-around {justify-content: space-around;}
|
|
41
|
+
.sm-tide-axis1-between {justify-content: space-between;}
|
|
42
|
+
.sm-tide-axis1-center {justify-content: center;}
|
|
43
|
+
.sm-tide-axis1-end {justify-content: end;}
|
|
44
|
+
|
|
45
|
+
.sm-tide-axis2-around {align-items: space-around;}
|
|
46
|
+
.sm-tide-axis2-center {align-items: center;}
|
|
47
|
+
.sm-tide-axis2-end {align-items: flex-end;}
|
|
48
|
+
.sm-tide-axis2-start {align-items: flex-start;}
|
|
49
|
+
.sm-tide-axis2-stretch {align-items: stretch;}
|
|
50
|
+
|
|
51
|
+
.sm-tide-gap-0 {gap: 0;}
|
|
52
|
+
.sm-tide-gap-1\/4 {gap: var(--tide-spacing-1\/4);}
|
|
53
|
+
.sm-tide-gap-1\/2 {gap: var(--tide-spacing-1\/2);}
|
|
54
|
+
.sm-tide-gap-1 {gap: var(--tide-spacing-1);}
|
|
55
|
+
.sm-tide-gap-2 {gap: var(--tide-spacing-2);}
|
|
56
|
+
.sm-tide-gap-4 {gap: var(--tide-spacing-4);}
|
|
57
|
+
|
|
58
|
+
.sm-tide-flex-basis-auto {flex-basis: auto;}
|
|
59
|
+
.sm-tide-flex-basis-0 {flex-basis: 0;}
|
|
60
|
+
|
|
61
|
+
/* Box Sizing */
|
|
62
|
+
.sm-tide-box-border {box-sizing: border-box;}
|
|
63
|
+
.sm-tide-box-content {box-sizing: content-box;}
|
|
64
|
+
|
|
65
|
+
/* Margin */
|
|
66
|
+
.sm-tide-margin-0 {margin: 0;}
|
|
67
|
+
.sm-tide-margin-1\/4 {margin: var(--tide-spacing-1\/4);}
|
|
68
|
+
.sm-tide-margin-1\/2 {margin: var(--tide-spacing-1\/2);}
|
|
69
|
+
.sm-tide-margin-1 {margin: var(--tide-spacing-1);}
|
|
70
|
+
.sm-tide-margin-2 {margin: var(--tide-spacing-2);}
|
|
71
|
+
.sm-tide-margin-4 {margin: var(--tide-spacing-4);}
|
|
72
|
+
|
|
73
|
+
.sm-tide-margin-x-0 {margin-left: 0; margin-right: 0;}
|
|
74
|
+
.sm-tide-margin-x-1\/4 {margin-left: var(--tide-spacing-1\/4); margin-right: var(--tide-spacing-1\/4);}
|
|
75
|
+
.sm-tide-margin-x-1\/2 {margin-left: var(--tide-spacing-1\/2); margin-right: var(--tide-spacing-1\/2);}
|
|
76
|
+
.sm-tide-margin-x-1 {margin-left: var(--tide-spacing-1); margin-right: var(--tide-spacing-1);}
|
|
77
|
+
.sm-tide-margin-x-2 {margin-left: var(--tide-spacing-2); margin-right: var(--tide-spacing-2);}
|
|
78
|
+
.sm-tide-margin-x-4 {margin-left: var(--tide-spacing-4); margin-right: var(--tide-spacing-4);}
|
|
79
|
+
.sm-tide-margin-x-auto {margin-left: auto; margin-right: auto;}
|
|
80
|
+
|
|
81
|
+
.sm-tide-margin-y-0 {margin-top: 0; margin-bottom: 0;}
|
|
82
|
+
.sm-tide-margin-y-1\/4 {margin-top: var(--tide-spacing-1\/4); margin-bottom: var(--tide-spacing-1\/4);}
|
|
83
|
+
.sm-tide-margin-y-1\/2 {margin-top: var(--tide-spacing-1\/2); margin-bottom: var(--tide-spacing-1\/2);}
|
|
84
|
+
.sm-tide-margin-y-1 {margin-top: var(--tide-spacing-1); margin-bottom: var(--tide-spacing-1);}
|
|
85
|
+
.sm-tide-margin-y-2 {margin-top: var(--tide-spacing-2); margin-bottom: var(--tide-spacing-2);}
|
|
86
|
+
.sm-tide-margin-y-4 {margin-top: var(--tide-spacing-4); margin-bottom: var(--tide-spacing-4);}
|
|
87
|
+
.sm-tide-margin-y-auto {margin-top: var(--tide-spacing-auto); margin-bottom: var(--tide-spacing-auto);}
|
|
88
|
+
|
|
89
|
+
.sm-tide-margin-top-0 {margin-top: 0;}
|
|
90
|
+
.sm-tide-margin-top-1\/4 {margin-top: var(--tide-spacing-1\/4);}
|
|
91
|
+
.sm-tide-margin-top-1\/2 {margin-top: var(--tide-spacing-1\/2);}
|
|
92
|
+
.sm-tide-margin-top-1 {margin-top: var(--tide-spacing-1);}
|
|
93
|
+
.sm-tide-margin-top-2 {margin-top: var(--tide-spacing-2);}
|
|
94
|
+
.sm-tide-margin-top-4 {margin-top: var(--tide-spacing-4);}
|
|
95
|
+
.sm-tide-margin-top-auto {margin-top: var(--tide-spacing-auto);}
|
|
96
|
+
|
|
97
|
+
.sm-tide-margin-right-0 {margin-right: 0;}
|
|
98
|
+
.sm-tide-margin-right-1\/4 {margin-right: var(--tide-spacing-1\/4);}
|
|
99
|
+
.sm-tide-margin-right-1\/2 {margin-right: var(--tide-spacing-1\/2);}
|
|
100
|
+
.sm-tide-margin-right-1 {margin-right: var(--tide-spacing-1);}
|
|
101
|
+
.sm-tide-margin-right-2 {margin-right: var(--tide-spacing-2);}
|
|
102
|
+
.sm-tide-margin-right-4 {margin-right: var(--tide-spacing-4);}
|
|
103
|
+
.sm-tide-margin-right-auto {margin-right: auto;}
|
|
104
|
+
|
|
105
|
+
.sm-tide-margin-bottom-0 {margin-bottom: 0;}
|
|
106
|
+
.sm-tide-margin-bottom-1\/4 {margin-bottom: var(--tide-spacing-1\/4);}
|
|
107
|
+
.sm-tide-margin-bottom-1\/2 {margin-bottom: var(--tide-spacing-1\/2);}
|
|
108
|
+
.sm-tide-margin-bottom-1 {margin-bottom: var(--tide-spacing-1);}
|
|
109
|
+
.sm-tide-margin-bottom-2 {margin-bottom: var(--tide-spacing-2);}
|
|
110
|
+
.sm-tide-margin-bottom-4 {margin-bottom: var(--tide-spacing-4);}
|
|
111
|
+
.sm-tide-margin-bottom-auto {margin-bottom: var(--tide-spacing-auto);}
|
|
112
|
+
|
|
113
|
+
.sm-tide-margin-left-0 {margin-left: 0;}
|
|
114
|
+
.sm-tide-margin-left-1\/4 {margin-left: var(--tide-spacing-1\/4);}
|
|
115
|
+
.sm-tide-margin-left-1\/2 {margin-left: var(--tide-spacing-1\/2);}
|
|
116
|
+
.sm-tide-margin-left-1 {margin-left: var(--tide-spacing-1);}
|
|
117
|
+
.sm-tide-margin-left-2 {margin-left: var(--tide-spacing-2);}
|
|
118
|
+
.sm-tide-margin-left-4 {margin-left: var(--tide-spacing-4);}
|
|
119
|
+
.sm-tide-margin-left-auto {margin-left: auto;}
|
|
120
|
+
|
|
121
|
+
/* Border Color */
|
|
122
|
+
.sm-tide-border-color-initial {border-color: initial;}
|
|
123
|
+
|
|
124
|
+
.sm-tide-border-error {border-color: var(--tide-error-border);}
|
|
125
|
+
.sm-tide-border-info {border-color: var(--tide-info-border);}
|
|
126
|
+
.sm-tide-border-success {border-color: var(--tide-success-border);}
|
|
127
|
+
.sm-tide-border-warning {border-color: var(--tide-warning-border);}
|
|
128
|
+
|
|
129
|
+
/* Border Width */
|
|
130
|
+
.sm-tide-border-1,
|
|
131
|
+
.sm-tide-border-2,
|
|
132
|
+
.sm-tide-border-bottom-1,
|
|
133
|
+
.sm-tide-border-bottom-2,
|
|
134
|
+
.sm-tide-border-left-1,
|
|
135
|
+
.sm-tide-border-left-2,
|
|
136
|
+
.sm-tide-border-right-1,
|
|
137
|
+
.sm-tide-border-right-2,
|
|
138
|
+
.sm-tide-border-top-1,
|
|
139
|
+
.sm-tide-border-top-2 {
|
|
140
|
+
border-style: solid;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.sm-tide-border-0 {border-width: 0;}
|
|
144
|
+
.sm-tide-border-1 {border-width: var(--tide-border-width-1);}
|
|
145
|
+
.sm-tide-border-2 {border-width: var(--tide-border-width-2);}
|
|
146
|
+
|
|
147
|
+
.sm-tide-border-top-0 {border-top-width: 0;}
|
|
148
|
+
.sm-tide-border-right-0 {border-right-width: 0;}
|
|
149
|
+
.sm-tide-border-bottom-0 {border-bottom-width: 0;}
|
|
150
|
+
.sm-tide-border-left-0 {border-left-width: 0;}
|
|
151
|
+
|
|
152
|
+
.sm-tide-border-top-1 {border-top-width: var(--tide-border-width-1);}
|
|
153
|
+
.sm-tide-border-right-1 {border-right-width: var(--tide-border-width-1);}
|
|
154
|
+
.sm-tide-border-bottom-1 {border-bottom-width: var(--tide-border-width-1);}
|
|
155
|
+
.sm-tide-border-left-1 {border-left-width: var(--tide-border-width-1);}
|
|
156
|
+
|
|
157
|
+
.sm-tide-border-top-2 {border-top-width: var(--tide-border-width-2);}
|
|
158
|
+
.sm-tide-border-right-2 {border-right-width: var(--tide-border-width-2);}
|
|
159
|
+
.sm-tide-border-bottom-2 {border-bottom-width: var(--tide-border-width-2);}
|
|
160
|
+
.sm-tide-border-left-2 {border-left-width: var(--tide-border-width-2);}
|
|
161
|
+
|
|
162
|
+
.sm-tide-radius-0 {border-radius: 0;}
|
|
163
|
+
.sm-tide-radius-1\/4 {border-radius: var(--tide-radius-1\/4);}
|
|
164
|
+
.sm-tide-radius-1\/2 {border-radius: var(--tide-radius-1\/2);}
|
|
165
|
+
.sm-tide-radius-1 {border-radius: var(--tide-radius-1);}
|
|
166
|
+
.sm-tide-radius-full {border-radius: var(--tide-radius-full);}
|
|
167
|
+
|
|
168
|
+
/* Padding */
|
|
169
|
+
.sm-tide-padding-0 {padding: 0;}
|
|
170
|
+
.sm-tide-padding-1\/4 {padding: var(--tide-spacing-1\/4);}
|
|
171
|
+
.sm-tide-padding-1\/2 {padding: var(--tide-spacing-1\/2);}
|
|
172
|
+
.sm-tide-padding-1 {padding: var(--tide-spacing-1);}
|
|
173
|
+
.sm-tide-padding-2 {padding: var(--tide-spacing-2);}
|
|
174
|
+
.sm-tide-padding-4 {padding: var(--tide-spacing-4);}
|
|
175
|
+
|
|
176
|
+
.sm-tide-padding-x-0 {padding-left: 0; padding-right: 0;}
|
|
177
|
+
.sm-tide-padding-x-1\/4 {padding-left: var(--tide-spacing-1\/4); padding-right: var(--tide-spacing-1\/4);}
|
|
178
|
+
.sm-tide-padding-x-1\/2 {padding-left: var(--tide-spacing-1\/2); padding-right: var(--tide-spacing-1\/2);}
|
|
179
|
+
.sm-tide-padding-x-1 {padding-left: var(--tide-spacing-1); padding-right: var(--tide-spacing-1);}
|
|
180
|
+
.sm-tide-padding-x-2 {padding-left: var(--tide-spacing-2); padding-right: var(--tide-spacing-2);}
|
|
181
|
+
.sm-tide-padding-x-4 {padding-left: var(--tide-spacing-4); padding-right: var(--tide-spacing-4);}
|
|
182
|
+
|
|
183
|
+
.sm-tide-padding-y-0 {padding-top: 0; padding-bottom: 0;}
|
|
184
|
+
.sm-tide-padding-y-1\/4 {padding-top: var(--tide-spacing-1\/4); padding-bottom: var(--tide-spacing-1\/4);}
|
|
185
|
+
.sm-tide-padding-y-1\/2 {padding-top: var(--tide-spacing-1\/2); padding-bottom: var(--tide-spacing-1\/2);}
|
|
186
|
+
.sm-tide-padding-y-1 {padding-top: var(--tide-spacing-1); padding-bottom: var(--tide-spacing-1);}
|
|
187
|
+
.sm-tide-padding-y-2 {padding-top: var(--tide-spacing-2); padding-bottom: var(--tide-spacing-2);}
|
|
188
|
+
.sm-tide-padding-y-4 {padding-top: var(--tide-spacing-4); padding-bottom: var(--tide-spacing-4);}
|
|
189
|
+
|
|
190
|
+
.sm-tide-padding-top-0 {padding-top: 0;}
|
|
191
|
+
.sm-tide-padding-top-1\/4 {padding-top: var(--tide-spacing-1\/4);}
|
|
192
|
+
.sm-tide-padding-top-1\/2 {padding-top: var(--tide-spacing-1\/2);}
|
|
193
|
+
.sm-tide-padding-top-1 {padding-top: var(--tide-spacing-1);}
|
|
194
|
+
.sm-tide-padding-top-2 {padding-top: var(--tide-spacing-2);}
|
|
195
|
+
.sm-tide-padding-top-4 {padding-top: var(--tide-spacing-4);}
|
|
196
|
+
|
|
197
|
+
.sm-tide-padding-right-0 {padding-right: 0;}
|
|
198
|
+
.sm-tide-padding-right-1\/4 {padding-right: var(--tide-spacing-1\/4);}
|
|
199
|
+
.sm-tide-padding-right-1\/2 {padding-right: var(--tide-spacing-1\/2);}
|
|
200
|
+
.sm-tide-padding-right-1 {padding-right: var(--tide-spacing-1);}
|
|
201
|
+
.sm-tide-padding-right-2 {padding-right: var(--tide-spacing-2);}
|
|
202
|
+
.sm-tide-padding-right-4 {padding-right: var(--tide-spacing-4);}
|
|
203
|
+
|
|
204
|
+
.sm-tide-padding-bottom-0 {padding-bottom: 0;}
|
|
205
|
+
.sm-tide-padding-bottom-1\/4 {padding-bottom: var(--tide-spacing-1\/4);}
|
|
206
|
+
.sm-tide-padding-bottom-1\/2 {padding-bottom: var(--tide-spacing-1\/2);}
|
|
207
|
+
.sm-tide-padding-bottom-1 {padding-bottom: var(--tide-spacing-1);}
|
|
208
|
+
.sm-tide-padding-bottom-2 {padding-bottom: var(--tide-spacing-2);}
|
|
209
|
+
.sm-tide-padding-bottom-4 {padding-bottom: var(--tide-spacing-4);}
|
|
210
|
+
|
|
211
|
+
.sm-tide-padding-left-0 {padding-left: 0;}
|
|
212
|
+
.sm-tide-padding-left-1\/4 {padding-left: var(--tide-spacing-1\/4);}
|
|
213
|
+
.sm-tide-padding-left-1\/2 {padding-left: var(--tide-spacing-1\/2);}
|
|
214
|
+
.sm-tide-padding-left-1 {padding-left: var(--tide-spacing-1);}
|
|
215
|
+
.sm-tide-padding-left-2 {padding-left: var(--tide-spacing-2);}
|
|
216
|
+
.sm-tide-padding-left-4 {padding-left: var(--tide-spacing-4);}
|
|
217
|
+
|
|
218
|
+
/* Dimension */
|
|
219
|
+
.sm-tide-max-width-full {max-width: 100%;}
|
|
220
|
+
.sm-tide-min-width-0 {min-width: 0;}
|
|
221
|
+
|
|
222
|
+
.sm-tide-max-height-full {max-height: 100%;}
|
|
223
|
+
.sm-tide-min-height-0 {min-height: 0;}
|
|
224
|
+
|
|
225
|
+
.sm-tide-width-container {max-width: 1168px;}
|
|
226
|
+
|
|
227
|
+
.sm-tide-width-auto {width: auto;}
|
|
228
|
+
.sm-tide-width-0 {width: 0;}
|
|
229
|
+
.sm-tide-width-full {width: 100%;}
|
|
230
|
+
|
|
231
|
+
.sm-tide-height-auto {height: auto;}
|
|
232
|
+
.sm-tide-height-0 {height: 0;}
|
|
233
|
+
.sm-tide-height-full {height: 100%;}
|
|
234
|
+
|
|
235
|
+
/* Background */
|
|
236
|
+
.sm-tide-bg-initial {background-color: initial;}
|
|
237
|
+
|
|
238
|
+
.sm-tide-bg-primary-error {background-color: var(--tide-error-primary);}
|
|
239
|
+
.sm-tide-bg-primary-info {background-color: var(--tide-info-primary);}
|
|
240
|
+
.sm-tide-bg-primary-success {background-color: var(--tide-success-primary);}
|
|
241
|
+
.sm-tide-bg-primary-warning {background-color: var(--tide-warning-primary);}
|
|
242
|
+
|
|
243
|
+
.sm-tide-bg-surface-error {background-color: var(--tide-error-surface);}
|
|
244
|
+
.sm-tide-bg-surface-info {background-color: var(--tide-info-surface);}
|
|
245
|
+
.sm-tide-bg-surface-success {background-color: var(--tide-success-surface);}
|
|
246
|
+
.sm-tide-bg-surface-warning {background-color: var(--tide-warning-surface);}
|
|
247
|
+
|
|
248
|
+
.sm-tide-transparent-100 {background-color: var(--tide-transparent-100);}
|
|
249
|
+
.sm-tide-transparent-200 {background-color: var(--tide-transparent-200);}
|
|
250
|
+
.sm-tide-transparent-300 {background-color: var(--tide-transparent-300);}
|
|
251
|
+
.sm-tide-transparent-400 {background-color: var(--tide-transparent-400);}
|
|
252
|
+
|
|
253
|
+
/* Typographic roles */
|
|
254
|
+
.sm-tide-typography-display-1 {font-size: var(--tide-font-32); font-weight: 700;}
|
|
255
|
+
.sm-tide-typography-headline-1 {font-size: var(--tide-font-24); font-weight: 700;}
|
|
256
|
+
.sm-tide-typography-headline-2 {font-size: var(--tide-font-20); font-weight: 700;}
|
|
257
|
+
.sm-tide-typography-headline-3 {font-size: var(--tide-font-16); font-weight: 700;}
|
|
258
|
+
.sm-tide-typography-title-1 {font-size: var(--tide-font-20); font-weight: 600;}
|
|
259
|
+
.sm-tide-typography-title-2 {font-size: var(--tide-font-18); font-weight: 600;}
|
|
260
|
+
.sm-tide-typography-body-1 {font-size: var(--tide-font-16); font-weight: 400;}
|
|
261
|
+
.sm-tide-typography-body-2 {font-size: var(--tide-font-14); font-weight: 400;}
|
|
262
|
+
.sm-tide-typography-label-1 {font-size: var(--tide-font-16); font-weight: 500;}
|
|
263
|
+
.sm-tide-typography-label-1-semibold {font-size: var(--tide-font-16); font-weight: 600;}
|
|
264
|
+
.sm-tide-typography-label-2 {font-size: var(--tide-font-14); font-weight: 500;}
|
|
265
|
+
.sm-tide-typography-label-2-semibold {font-size: var(--tide-font-14); font-weight: 600;}
|
|
266
|
+
.sm-tide-typography-label-3 {font-size: var(--tide-font-12); font-weight: 500;}
|
|
267
|
+
.sm-tide-typography-link-1 {font-size: var(--tide-font-16); font-weight: 500;}
|
|
268
|
+
.sm-tide-typography-link-2 {font-size: var(--tide-font-14); font-weight: 500;}
|
|
269
|
+
.sm-tide-typography-link-3 {font-size: var(--tide-font-12); font-weight: 500;}
|
|
270
|
+
.sm-tide-typography-button-1 {font-size: var(--tide-font-16); font-weight: 600;}
|
|
271
|
+
.sm-tide-typography-button-2 {font-size: var(--tide-font-14); font-weight: 600;}
|
|
272
|
+
|
|
273
|
+
/* Font Color */
|
|
274
|
+
.sm-tide-font-error {color: var(--tide-error-primary);}
|
|
275
|
+
.sm-tide-font-info {color: var(--tide-info-primary);}
|
|
276
|
+
.sm-tide-font-success {color: var(--tide-success-primary);}
|
|
277
|
+
.sm-tide-font-warning {color: var(--tide-warning-primary);}
|
|
278
|
+
|
|
279
|
+
/* Font Size */
|
|
280
|
+
.sm-tide-font-10 {font-size: var(--tide-font-10);}
|
|
281
|
+
.sm-tide-font-12 {font-size: var(--tide-font-12);}
|
|
282
|
+
.sm-tide-font-14 {font-size: var(--tide-font-14);}
|
|
283
|
+
.sm-tide-font-16 {font-size: var(--tide-font-16);}
|
|
284
|
+
.sm-tide-font-20 {font-size: var(--tide-font-20);}
|
|
285
|
+
.sm-tide-font-24 {font-size: var(--tide-font-24);}
|
|
286
|
+
.sm-tide-font-32 {font-size: var(--tide-font-32);}
|
|
287
|
+
|
|
288
|
+
/* Font Weight */
|
|
289
|
+
.sm-tide-font-400 {font-weight: 400;}
|
|
290
|
+
.sm-tide-font-500 {font-weight: 500;}
|
|
291
|
+
.sm-tide-font-600 {font-weight: 600;}
|
|
292
|
+
.sm-tide-font-700 {font-weight: 700;}
|
|
293
|
+
|
|
294
|
+
/* Misc */
|
|
295
|
+
.sm-tide-align-middle {vertical-align: middle;}
|
|
296
|
+
.sm-tide-align-initial {vertical-align: initial;}
|
|
297
|
+
|
|
298
|
+
.sm-tide-bg-blur {backdrop-filter: blur(8px);}
|
|
299
|
+
|
|
300
|
+
.sm-tide-break-initial {overflow-wrap: initial;}
|
|
301
|
+
.sm-tide-break-word {overflow-wrap: break-word;}
|
|
302
|
+
|
|
303
|
+
.sm-tide-break-inside-avoid-column {break-inside: avoid-column}
|
|
304
|
+
|
|
305
|
+
.sm-tide-columns-initial {column-count: initial;}
|
|
306
|
+
.sm-tide-columns-1 {column-count: 1;}
|
|
307
|
+
.sm-tide-columns-2 {column-count: 2;}
|
|
308
|
+
.sm-tide-columns-3 {column-count: 3;}
|
|
309
|
+
.sm-tide-columns-4 {column-count: 4;}
|
|
310
|
+
|
|
311
|
+
.sm-tide-cursor-not-allowed {cursor: not-allowed;}
|
|
312
|
+
.sm-tide-cursor-pointer {cursor: pointer;}
|
|
313
|
+
.sm-tide-cursor-text {cursor: text;}
|
|
314
|
+
|
|
315
|
+
.sm-tide-ellipsis {
|
|
316
|
+
overflow: hidden;
|
|
317
|
+
text-overflow: ellipsis;
|
|
318
|
+
white-space: nowrap;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.sm-tide-isolate {isolation: isolate;}
|
|
322
|
+
|
|
323
|
+
.sm-tide-leading-default {line-height: 1.4;}
|
|
324
|
+
.sm-tide-leading-normal {line-height: normal;}
|
|
325
|
+
|
|
326
|
+
.sm-tide-list-none {list-style-type: none;}
|
|
327
|
+
|
|
328
|
+
.sm-tide-object-center {object-position: center;}
|
|
329
|
+
|
|
330
|
+
.sm-tide-object-cover {object-fit: cover;}
|
|
331
|
+
.sm-tide-object-contain {object-fit: contain;}
|
|
332
|
+
.sm-tide-object-scale-down {object-fit: scale-down;}
|
|
333
|
+
|
|
334
|
+
.sm-tide-opacity {opacity: 1;}
|
|
335
|
+
.sm-tide-opacity-none {opacity: 0;}
|
|
336
|
+
|
|
337
|
+
.sm-tide-pointer-events {pointer-events: auto;}
|
|
338
|
+
.sm-tide-pointer-events-none {pointer-events: none;}
|
|
339
|
+
|
|
340
|
+
.sm-tide-ratio-1\/1 {aspect-ratio: 1 / 1;}
|
|
341
|
+
.sm-tide-ratio-16\/9 {aspect-ratio: 16 / 9;}
|
|
342
|
+
.sm-tide-ratio-3\/2 {aspect-ratio: 3 / 2;}
|
|
343
|
+
|
|
344
|
+
.sm-tide-scrollbar-none::-webkit-scrollbar {display: none;}
|
|
345
|
+
.sm-tide-scrollbar-none {
|
|
346
|
+
-ms-overflow-style: none;
|
|
347
|
+
scrollbar-width: none;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.sm-tide-scroll-snap {
|
|
351
|
+
scroll-snap-stop: always;
|
|
352
|
+
scroll-snap-type: both mandatory;
|
|
353
|
+
scroll-behavior: smooth;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.sm-tide-scroll-snap-start {
|
|
357
|
+
scroll-snap-align: start;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.sm-tide-shadow-initial {box-shadow: initial;}
|
|
361
|
+
.sm-tide-shadow-bottom {box-shadow: var(--tide-shadow-bottom);}
|
|
362
|
+
.sm-tide-shadow-top {box-shadow: var(--tide-shadow-top);}
|
|
363
|
+
.sm-tide-shadow-text {text-shadow: var(--tide-shadow-text);}
|
|
364
|
+
|
|
365
|
+
.sm-tide-text-center {text-align: center;}
|
|
366
|
+
.sm-tide-text-left {text-align: left;}
|
|
367
|
+
.sm-tide-text-right {text-align: right;}
|
|
368
|
+
|
|
369
|
+
.sm-tide-text-transform-lower {text-transform: lowercase;}
|
|
370
|
+
.sm-tide-text-transform-none {text-transform: none;}
|
|
371
|
+
.sm-tide-text-transform-upper {text-transform: uppercase;}
|
|
372
|
+
|
|
373
|
+
.sm-tide-underline,
|
|
374
|
+
.sm-tide-underline:hover,
|
|
375
|
+
.sm-tide-underline-hover:hover {
|
|
376
|
+
text-decoration: underline;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.sm-tide-underline-none,
|
|
380
|
+
.sm-tide-underline-none:hover,
|
|
381
|
+
.sm-tide-underline-hover {
|
|
382
|
+
text-decoration: none;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.sm-tide-visible {visibility: visible;}
|
|
386
|
+
.sm-tide-visible-none {visibility: hidden;}
|
|
387
|
+
|
|
388
|
+
.sm-tide-whitespace-nowrap {white-space: nowrap;}
|
|
389
|
+
|
|
390
|
+
.sm-tide-x-auto {overflow-x: auto;}
|
|
391
|
+
.sm-tide-x-hidden {overflow-x: hidden;}
|
|
392
|
+
.sm-tide-x-scroll {overflow-x: scroll;}
|
|
393
|
+
|
|
394
|
+
.sm-tide-xy-auto {overflow: auto;}
|
|
395
|
+
.sm-tide-xy-hidden {overflow: hidden;}
|
|
396
|
+
|
|
397
|
+
.sm-tide-y-auto {overflow-y: auto;}
|
|
398
|
+
.sm-tide-y-hidden {overflow-y: hidden;}
|
|
399
|
+
|
|
400
|
+
.sm-tide-z-index-initial {z-index: initial;}
|
|
401
|
+
.sm-tide-z-index-1 {z-index: 1;}
|
|
402
|
+
}
|