@snabcentr/client-ui 0.0.0-test
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +1 -0
- package/README.md +9 -0
- package/banner/index.d.ts +2 -0
- package/banner/sc-banner.component.d.ts +130 -0
- package/banner/sc-banner.module.d.ts +17 -0
- package/cart/cart-item-mobile/sc-cart-item-mobile.component.d.ts +77 -0
- package/cart/index.d.ts +2 -0
- package/cart/sc-cart.module.d.ts +16 -0
- package/catalog/category-card/sc-category-card.component.d.ts +68 -0
- package/catalog/index.d.ts +7 -0
- package/catalog/input-quantity/sc-input-quantity.component.d.ts +75 -0
- package/catalog/price-card/sc-price-card.component.d.ts +114 -0
- package/catalog/price-history/sc-chart-option.d.ts +7 -0
- package/catalog/price-history/sc-i-chart-data-item.d.ts +13 -0
- package/catalog/price-history/sc-lang-RU.d.ts +113 -0
- package/catalog/price-history/sc-price-history.component.d.ts +73 -0
- package/catalog/price-warehouse-stock/sc-price-warehouse-stock.component.d.ts +37 -0
- package/catalog/sc-catalog.module.d.ts +21 -0
- package/catalog/sc-favorite-btn/sc-favorite-btn.component.d.ts +13 -0
- package/esm2020/banner/index.mjs +3 -0
- package/esm2020/banner/sc-banner.component.mjs +222 -0
- package/esm2020/banner/sc-banner.module.mjs +27 -0
- package/esm2020/cart/cart-item-mobile/sc-cart-item-mobile.component.mjs +119 -0
- package/esm2020/cart/index.mjs +3 -0
- package/esm2020/cart/sc-cart.module.mjs +58 -0
- package/esm2020/catalog/category-card/sc-category-card.component.mjs +109 -0
- package/esm2020/catalog/index.mjs +8 -0
- package/esm2020/catalog/input-quantity/sc-input-quantity.component.mjs +154 -0
- package/esm2020/catalog/price-card/sc-price-card.component.mjs +154 -0
- package/esm2020/catalog/price-history/sc-chart-option.mjs +79 -0
- package/esm2020/catalog/price-history/sc-i-chart-data-item.mjs +2 -0
- package/esm2020/catalog/price-history/sc-lang-RU.mjs +113 -0
- package/esm2020/catalog/price-history/sc-price-history.component.mjs +104 -0
- package/esm2020/catalog/price-warehouse-stock/sc-price-warehouse-stock.component.mjs +44 -0
- package/esm2020/catalog/sc-catalog.module.mjs +88 -0
- package/esm2020/catalog/sc-favorite-btn/sc-favorite-btn.component.mjs +24 -0
- package/esm2020/files/directives/index.mjs +3 -0
- package/esm2020/files/directives/tree-top.directive.mjs +63 -0
- package/esm2020/files/directives/tree.directive.mjs +47 -0
- package/esm2020/files/file-tree-item/file-tree-item.component.mjs +18 -0
- package/esm2020/files/files-and-documents.component.mjs +60 -0
- package/esm2020/files/files-and-documents.module.mjs +26 -0
- package/esm2020/files/index.mjs +6 -0
- package/esm2020/files/interfaces/tree-node.mjs +2 -0
- package/esm2020/files/services/index.mjs +3 -0
- package/esm2020/files/services/tree-icon.service.mjs +48 -0
- package/esm2020/files/services/tree-loader.service.mjs +60 -0
- package/esm2020/helpers/index.mjs +2 -0
- package/esm2020/helpers/sc-px-converter.mjs +27 -0
- package/esm2020/helpers/sc-units-helper.mjs +44 -0
- package/esm2020/icons/index.mjs +2 -0
- package/esm2020/icons/sc-client-ui-icons-name.mjs +107 -0
- package/esm2020/loader/index.mjs +2 -0
- package/esm2020/loader/sc-i-loader.mjs +2 -0
- package/esm2020/news/index.mjs +4 -0
- package/esm2020/news/news-card/sc-news-card.component.mjs +31 -0
- package/esm2020/news/news-card-skeleton/sc-news-card-skeleton.component.mjs +23 -0
- package/esm2020/news/sc-news.module.mjs +24 -0
- package/esm2020/order/index.mjs +3 -0
- package/esm2020/order/order-item-mobile/order-item-mobile.component.mjs +79 -0
- package/esm2020/order/sc-order.module.mjs +23 -0
- package/esm2020/public-api.mjs +15 -0
- package/esm2020/share-button/index.mjs +3 -0
- package/esm2020/share-button/sc-share-button.component.mjs +35 -0
- package/esm2020/share-button/sc-share-button.module.mjs +22 -0
- package/esm2020/snabcentr-client-ui.mjs +5 -0
- package/esm2020/tokens/index.mjs +2 -0
- package/esm2020/tokens/sc-linear-values-token.mjs +10 -0
- package/esm2020/validators/index.mjs +2 -0
- package/esm2020/validators/stepValidator.mjs +13 -0
- package/fesm2015/snabcentr-client-ui.mjs +1929 -0
- package/fesm2015/snabcentr-client-ui.mjs.map +1 -0
- package/fesm2020/snabcentr-client-ui.mjs +1901 -0
- package/fesm2020/snabcentr-client-ui.mjs.map +1 -0
- package/files/directives/index.d.ts +2 -0
- package/files/directives/tree-top.directive.d.ts +33 -0
- package/files/directives/tree.directive.d.ts +35 -0
- package/files/file-tree-item/file-tree-item.component.d.ts +9 -0
- package/files/files-and-documents.component.d.ts +27 -0
- package/files/files-and-documents.module.d.ts +16 -0
- package/files/index.d.ts +5 -0
- package/files/interfaces/tree-node.d.ts +29 -0
- package/files/services/index.d.ts +2 -0
- package/files/services/tree-icon.service.d.ts +23 -0
- package/files/services/tree-loader.service.d.ts +43 -0
- package/helpers/index.d.ts +1 -0
- package/helpers/sc-px-converter.d.ts +15 -0
- package/helpers/sc-units-helper.d.ts +28 -0
- package/icons/index.d.ts +1 -0
- package/icons/sc-client-ui-icons-name.d.ts +5 -0
- package/icons/svg-pack/scIconAddProfile.svg +11 -0
- package/icons/svg-pack/scIconApplication.svg +11 -0
- package/icons/svg-pack/scIconArrowDown.svg +11 -0
- package/icons/svg-pack/scIconArrowDownLarge.svg +11 -0
- package/icons/svg-pack/scIconArrowDownLargeEnd.svg +12 -0
- package/icons/svg-pack/scIconArrowLeft.svg +11 -0
- package/icons/svg-pack/scIconArrowReturn.svg +11 -0
- package/icons/svg-pack/scIconArrowRight.svg +11 -0
- package/icons/svg-pack/scIconArrowUp.svg +11 -0
- package/icons/svg-pack/scIconAttention.svg +11 -0
- package/icons/svg-pack/scIconBag.svg +11 -0
- package/icons/svg-pack/scIconBasket.svg +11 -0
- package/icons/svg-pack/scIconBell.svg +11 -0
- package/icons/svg-pack/scIconBook.svg +11 -0
- package/icons/svg-pack/scIconBubble.svg +11 -0
- package/icons/svg-pack/scIconCalendar.svg +11 -0
- package/icons/svg-pack/scIconCancel.svg +18 -0
- package/icons/svg-pack/scIconCart.svg +11 -0
- package/icons/svg-pack/scIconCatalog.svg +16 -0
- package/icons/svg-pack/scIconClients.svg +11 -0
- package/icons/svg-pack/scIconClip.svg +11 -0
- package/icons/svg-pack/scIconClock.svg +11 -0
- package/icons/svg-pack/scIconConfigurator.svg +18 -0
- package/icons/svg-pack/scIconContacts.svg +11 -0
- package/icons/svg-pack/scIconCross.svg +11 -0
- package/icons/svg-pack/scIconDeleteProfile.svg +12 -0
- package/icons/svg-pack/scIconDone.svg +12 -0
- package/icons/svg-pack/scIconDownloading.svg +11 -0
- package/icons/svg-pack/scIconEdit.svg +11 -0
- package/icons/svg-pack/scIconError.svg +12 -0
- package/icons/svg-pack/scIconExcelFile.svg +11 -0
- package/icons/svg-pack/scIconEye.svg +11 -0
- package/icons/svg-pack/scIconFavorite.svg +11 -0
- package/icons/svg-pack/scIconFavoriteFill.svg +11 -0
- package/icons/svg-pack/scIconFile.svg +11 -0
- package/icons/svg-pack/scIconFilter.svg +11 -0
- package/icons/svg-pack/scIconFolder.svg +11 -0
- package/icons/svg-pack/scIconFolderOpen.svg +11 -0
- package/icons/svg-pack/scIconFolderPlus.svg +11 -0
- package/icons/svg-pack/scIconGraph.svg +11 -0
- package/icons/svg-pack/scIconHamburger.svg +13 -0
- package/icons/svg-pack/scIconHeart.svg +11 -0
- package/icons/svg-pack/scIconHeartFill.svg +11 -0
- package/icons/svg-pack/scIconHistory.svg +11 -0
- package/icons/svg-pack/scIconHome.svg +12 -0
- package/icons/svg-pack/scIconImage.svg +11 -0
- package/icons/svg-pack/scIconLike.svg +11 -0
- package/icons/svg-pack/scIconList.svg +11 -0
- package/icons/svg-pack/scIconLocation.svg +11 -0
- package/icons/svg-pack/scIconLock.svg +11 -0
- package/icons/svg-pack/scIconLockOpen.svg +11 -0
- package/icons/svg-pack/scIconLogIn.svg +11 -0
- package/icons/svg-pack/scIconLogOut.svg +13 -0
- package/icons/svg-pack/scIconLogOut2.svg +13 -0
- package/icons/svg-pack/scIconMail.svg +11 -0
- package/icons/svg-pack/scIconMinus.svg +11 -0
- package/icons/svg-pack/scIconMoney.svg +11 -0
- package/icons/svg-pack/scIconMoney2.svg +11 -0
- package/icons/svg-pack/scIconNews.svg +11 -0
- package/icons/svg-pack/scIconOffer.svg +11 -0
- package/icons/svg-pack/scIconPalette.svg +18 -0
- package/icons/svg-pack/scIconPdfFile.svg +12 -0
- package/icons/svg-pack/scIconPercentage.svg +11 -0
- package/icons/svg-pack/scIconPhone.svg +11 -0
- package/icons/svg-pack/scIconPlus.svg +11 -0
- package/icons/svg-pack/scIconPrice.svg +11 -0
- package/icons/svg-pack/scIconProfile.svg +11 -0
- package/icons/svg-pack/scIconQRCodeScan.svg +18 -0
- package/icons/svg-pack/scIconQuestion.svg +11 -0
- package/icons/svg-pack/scIconReclamation.svg +11 -0
- package/icons/svg-pack/scIconRefresh.svg +11 -0
- package/icons/svg-pack/scIconRepeat.svg +11 -0
- package/icons/svg-pack/scIconRequisites.svg +11 -0
- package/icons/svg-pack/scIconRocket.svg +18 -0
- package/icons/svg-pack/scIconSave.svg +11 -0
- package/icons/svg-pack/scIconSearch.svg +12 -0
- package/icons/svg-pack/scIconSend.svg +11 -0
- package/icons/svg-pack/scIconSettings.svg +11 -0
- package/icons/svg-pack/scIconShare.svg +15 -0
- package/icons/svg-pack/scIconSocialCopy.svg +13 -0
- package/icons/svg-pack/scIconSocialEmail.svg +13 -0
- package/icons/svg-pack/scIconSocialFacebook.svg +12 -0
- package/icons/svg-pack/scIconSocialInstagram.svg +33 -0
- package/icons/svg-pack/scIconSocialQR.svg +12 -0
- package/icons/svg-pack/scIconSocialTelegram.svg +20 -0
- package/icons/svg-pack/scIconSocialViber.svg +16 -0
- package/icons/svg-pack/scIconSocialVk.svg +12 -0
- package/icons/svg-pack/scIconSocialWhatsapp.svg +12 -0
- package/icons/svg-pack/scIconStar.svg +11 -0
- package/icons/svg-pack/scIconSuitcase.svg +11 -0
- package/icons/svg-pack/scIconTasks.svg +11 -0
- package/icons/svg-pack/scIconTick.svg +11 -0
- package/icons/svg-pack/scIconTop.svg +11 -0
- package/icons/svg-pack/scIconVerticalThreeDots.svg +11 -0
- package/icons/svg-pack/scIconViewGrid.svg +11 -0
- package/icons/svg-pack/scIconViewInline.svg +11 -0
- package/icons/svg-pack/scIconViewTree.svg +15 -0
- package/icons/svg-pack/scIconWallet.svg +11 -0
- package/icons/svg-pack/scIconWarning.svg +11 -0
- package/icons/svg-pack/scIconWordFile.svg +12 -0
- package/index.d.ts +5 -0
- package/loader/index.d.ts +1 -0
- package/loader/sc-i-loader.d.ts +9 -0
- package/news/index.d.ts +3 -0
- package/news/news-card/sc-news-card.component.d.ts +22 -0
- package/news/news-card-skeleton/sc-news-card-skeleton.component.d.ts +12 -0
- package/news/sc-news.module.d.ts +14 -0
- package/order/index.d.ts +2 -0
- package/order/order-item-mobile/order-item-mobile.component.d.ts +53 -0
- package/order/sc-order.module.d.ts +13 -0
- package/package.json +62 -0
- package/public-api.d.ts +11 -0
- package/share-button/index.d.ts +2 -0
- package/share-button/sc-share-button.component.d.ts +22 -0
- package/share-button/sc-share-button.module.d.ts +12 -0
- package/styles/taiga/taiga-tailwind-preset.js +163 -0
- package/styles/taiga/variables.less +44 -0
- package/styles/tailwind/tailwind.scss +1461 -0
- package/tokens/index.d.ts +1 -0
- package/tokens/sc-linear-values-token.d.ts +8 -0
- package/validators/index.d.ts +1 -0
- package/validators/stepValidator.d.ts +7 -0
@@ -0,0 +1,1461 @@
|
|
1
|
+
/*
|
2
|
+
! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com
|
3
|
+
*/
|
4
|
+
|
5
|
+
/*
|
6
|
+
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
7
|
+
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
8
|
+
*/
|
9
|
+
|
10
|
+
*,
|
11
|
+
::before,
|
12
|
+
::after {
|
13
|
+
box-sizing: border-box;
|
14
|
+
/* 1 */
|
15
|
+
border-width: 0;
|
16
|
+
/* 2 */
|
17
|
+
border-style: solid;
|
18
|
+
/* 2 */
|
19
|
+
border-color: #e5e7eb;
|
20
|
+
/* 2 */
|
21
|
+
}
|
22
|
+
|
23
|
+
::before,
|
24
|
+
::after {
|
25
|
+
--tw-content: '';
|
26
|
+
}
|
27
|
+
|
28
|
+
/*
|
29
|
+
1. Use a consistent sensible line-height in all browsers.
|
30
|
+
2. Prevent adjustments of font size after orientation changes in iOS.
|
31
|
+
3. Use a more readable tab size.
|
32
|
+
4. Use the user's configured `sans` font-family by default.
|
33
|
+
5. Use the user's configured `sans` font-feature-settings by default.
|
34
|
+
6. Use the user's configured `sans` font-variation-settings by default.
|
35
|
+
7. Disable tap highlights on iOS
|
36
|
+
*/
|
37
|
+
|
38
|
+
html,
|
39
|
+
:host {
|
40
|
+
line-height: 1.5;
|
41
|
+
/* 1 */
|
42
|
+
-webkit-text-size-adjust: 100%;
|
43
|
+
/* 2 */
|
44
|
+
-moz-tab-size: 4;
|
45
|
+
/* 3 */
|
46
|
+
-o-tab-size: 4;
|
47
|
+
tab-size: 4;
|
48
|
+
/* 3 */
|
49
|
+
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
50
|
+
/* 4 */
|
51
|
+
font-feature-settings: normal;
|
52
|
+
/* 5 */
|
53
|
+
font-variation-settings: normal;
|
54
|
+
/* 6 */
|
55
|
+
-webkit-tap-highlight-color: transparent;
|
56
|
+
/* 7 */
|
57
|
+
}
|
58
|
+
|
59
|
+
/*
|
60
|
+
1. Remove the margin in all browsers.
|
61
|
+
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
62
|
+
*/
|
63
|
+
|
64
|
+
body {
|
65
|
+
margin: 0;
|
66
|
+
/* 1 */
|
67
|
+
line-height: inherit;
|
68
|
+
/* 2 */
|
69
|
+
}
|
70
|
+
|
71
|
+
/*
|
72
|
+
1. Add the correct height in Firefox.
|
73
|
+
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
74
|
+
3. Ensure horizontal rules are visible by default.
|
75
|
+
*/
|
76
|
+
|
77
|
+
hr {
|
78
|
+
height: 0;
|
79
|
+
/* 1 */
|
80
|
+
color: inherit;
|
81
|
+
/* 2 */
|
82
|
+
border-top-width: 1px;
|
83
|
+
/* 3 */
|
84
|
+
}
|
85
|
+
|
86
|
+
/*
|
87
|
+
Add the correct text decoration in Chrome, Edge, and Safari.
|
88
|
+
*/
|
89
|
+
|
90
|
+
abbr:where([title]) {
|
91
|
+
-webkit-text-decoration: underline dotted;
|
92
|
+
text-decoration: underline dotted;
|
93
|
+
}
|
94
|
+
|
95
|
+
/*
|
96
|
+
Remove the default font size and weight for headings.
|
97
|
+
*/
|
98
|
+
|
99
|
+
h1,
|
100
|
+
h2,
|
101
|
+
h3,
|
102
|
+
h4,
|
103
|
+
h5,
|
104
|
+
h6 {
|
105
|
+
font-size: inherit;
|
106
|
+
font-weight: inherit;
|
107
|
+
}
|
108
|
+
|
109
|
+
/*
|
110
|
+
Reset links to optimize for opt-in styling instead of opt-out.
|
111
|
+
*/
|
112
|
+
|
113
|
+
a {
|
114
|
+
color: inherit;
|
115
|
+
text-decoration: inherit;
|
116
|
+
}
|
117
|
+
|
118
|
+
/*
|
119
|
+
Add the correct font weight in Edge and Safari.
|
120
|
+
*/
|
121
|
+
|
122
|
+
b,
|
123
|
+
strong {
|
124
|
+
font-weight: bolder;
|
125
|
+
}
|
126
|
+
|
127
|
+
/*
|
128
|
+
1. Use the user's configured `mono` font-family by default.
|
129
|
+
2. Use the user's configured `mono` font-feature-settings by default.
|
130
|
+
3. Use the user's configured `mono` font-variation-settings by default.
|
131
|
+
4. Correct the odd `em` font sizing in all browsers.
|
132
|
+
*/
|
133
|
+
|
134
|
+
code,
|
135
|
+
kbd,
|
136
|
+
samp,
|
137
|
+
pre {
|
138
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
139
|
+
/* 1 */
|
140
|
+
font-feature-settings: normal;
|
141
|
+
/* 2 */
|
142
|
+
font-variation-settings: normal;
|
143
|
+
/* 3 */
|
144
|
+
font-size: 1em;
|
145
|
+
/* 4 */
|
146
|
+
}
|
147
|
+
|
148
|
+
/*
|
149
|
+
Add the correct font size in all browsers.
|
150
|
+
*/
|
151
|
+
|
152
|
+
small {
|
153
|
+
font-size: 80%;
|
154
|
+
}
|
155
|
+
|
156
|
+
/*
|
157
|
+
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
158
|
+
*/
|
159
|
+
|
160
|
+
sub,
|
161
|
+
sup {
|
162
|
+
font-size: 75%;
|
163
|
+
line-height: 0;
|
164
|
+
position: relative;
|
165
|
+
vertical-align: baseline;
|
166
|
+
}
|
167
|
+
|
168
|
+
sub {
|
169
|
+
bottom: -0.25em;
|
170
|
+
}
|
171
|
+
|
172
|
+
sup {
|
173
|
+
top: -0.5em;
|
174
|
+
}
|
175
|
+
|
176
|
+
/*
|
177
|
+
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
178
|
+
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
179
|
+
3. Remove gaps between table borders by default.
|
180
|
+
*/
|
181
|
+
|
182
|
+
table {
|
183
|
+
text-indent: 0;
|
184
|
+
/* 1 */
|
185
|
+
border-color: inherit;
|
186
|
+
/* 2 */
|
187
|
+
border-collapse: collapse;
|
188
|
+
/* 3 */
|
189
|
+
}
|
190
|
+
|
191
|
+
/*
|
192
|
+
1. Change the font styles in all browsers.
|
193
|
+
2. Remove the margin in Firefox and Safari.
|
194
|
+
3. Remove default padding in all browsers.
|
195
|
+
*/
|
196
|
+
|
197
|
+
button,
|
198
|
+
input,
|
199
|
+
optgroup,
|
200
|
+
select,
|
201
|
+
textarea {
|
202
|
+
font-family: inherit;
|
203
|
+
/* 1 */
|
204
|
+
font-feature-settings: inherit;
|
205
|
+
/* 1 */
|
206
|
+
font-variation-settings: inherit;
|
207
|
+
/* 1 */
|
208
|
+
font-size: 100%;
|
209
|
+
/* 1 */
|
210
|
+
font-weight: inherit;
|
211
|
+
/* 1 */
|
212
|
+
line-height: inherit;
|
213
|
+
/* 1 */
|
214
|
+
color: inherit;
|
215
|
+
/* 1 */
|
216
|
+
margin: 0;
|
217
|
+
/* 2 */
|
218
|
+
padding: 0;
|
219
|
+
/* 3 */
|
220
|
+
}
|
221
|
+
|
222
|
+
/*
|
223
|
+
Remove the inheritance of text transform in Edge and Firefox.
|
224
|
+
*/
|
225
|
+
|
226
|
+
button,
|
227
|
+
select {
|
228
|
+
text-transform: none;
|
229
|
+
}
|
230
|
+
|
231
|
+
/*
|
232
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
233
|
+
2. Remove default button styles.
|
234
|
+
*/
|
235
|
+
|
236
|
+
button,
|
237
|
+
[type='button'],
|
238
|
+
[type='reset'],
|
239
|
+
[type='submit'] {
|
240
|
+
-webkit-appearance: button;
|
241
|
+
/* 1 */
|
242
|
+
background-color: transparent;
|
243
|
+
/* 2 */
|
244
|
+
background-image: none;
|
245
|
+
/* 2 */
|
246
|
+
}
|
247
|
+
|
248
|
+
/*
|
249
|
+
Use the modern Firefox focus style for all focusable elements.
|
250
|
+
*/
|
251
|
+
|
252
|
+
:-moz-focusring {
|
253
|
+
outline: auto;
|
254
|
+
}
|
255
|
+
|
256
|
+
/*
|
257
|
+
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
258
|
+
*/
|
259
|
+
|
260
|
+
:-moz-ui-invalid {
|
261
|
+
box-shadow: none;
|
262
|
+
}
|
263
|
+
|
264
|
+
/*
|
265
|
+
Add the correct vertical alignment in Chrome and Firefox.
|
266
|
+
*/
|
267
|
+
|
268
|
+
progress {
|
269
|
+
vertical-align: baseline;
|
270
|
+
}
|
271
|
+
|
272
|
+
/*
|
273
|
+
Correct the cursor style of increment and decrement buttons in Safari.
|
274
|
+
*/
|
275
|
+
|
276
|
+
::-webkit-inner-spin-button,
|
277
|
+
::-webkit-outer-spin-button {
|
278
|
+
height: auto;
|
279
|
+
}
|
280
|
+
|
281
|
+
/*
|
282
|
+
1. Correct the odd appearance in Chrome and Safari.
|
283
|
+
2. Correct the outline style in Safari.
|
284
|
+
*/
|
285
|
+
|
286
|
+
[type='search'] {
|
287
|
+
-webkit-appearance: textfield;
|
288
|
+
/* 1 */
|
289
|
+
outline-offset: -2px;
|
290
|
+
/* 2 */
|
291
|
+
}
|
292
|
+
|
293
|
+
/*
|
294
|
+
Remove the inner padding in Chrome and Safari on macOS.
|
295
|
+
*/
|
296
|
+
|
297
|
+
::-webkit-search-decoration {
|
298
|
+
-webkit-appearance: none;
|
299
|
+
}
|
300
|
+
|
301
|
+
/*
|
302
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
303
|
+
2. Change font properties to `inherit` in Safari.
|
304
|
+
*/
|
305
|
+
|
306
|
+
::-webkit-file-upload-button {
|
307
|
+
-webkit-appearance: button;
|
308
|
+
/* 1 */
|
309
|
+
font: inherit;
|
310
|
+
/* 2 */
|
311
|
+
}
|
312
|
+
|
313
|
+
/*
|
314
|
+
Add the correct display in Chrome and Safari.
|
315
|
+
*/
|
316
|
+
|
317
|
+
summary {
|
318
|
+
display: list-item;
|
319
|
+
}
|
320
|
+
|
321
|
+
/*
|
322
|
+
Removes the default spacing and border for appropriate elements.
|
323
|
+
*/
|
324
|
+
|
325
|
+
blockquote,
|
326
|
+
dl,
|
327
|
+
dd,
|
328
|
+
h1,
|
329
|
+
h2,
|
330
|
+
h3,
|
331
|
+
h4,
|
332
|
+
h5,
|
333
|
+
h6,
|
334
|
+
hr,
|
335
|
+
figure,
|
336
|
+
p,
|
337
|
+
pre {
|
338
|
+
margin: 0;
|
339
|
+
}
|
340
|
+
|
341
|
+
fieldset {
|
342
|
+
margin: 0;
|
343
|
+
padding: 0;
|
344
|
+
}
|
345
|
+
|
346
|
+
legend {
|
347
|
+
padding: 0;
|
348
|
+
}
|
349
|
+
|
350
|
+
ol,
|
351
|
+
ul,
|
352
|
+
menu {
|
353
|
+
list-style: none;
|
354
|
+
margin: 0;
|
355
|
+
padding: 0;
|
356
|
+
}
|
357
|
+
|
358
|
+
/*
|
359
|
+
Reset default styling for dialogs.
|
360
|
+
*/
|
361
|
+
|
362
|
+
dialog {
|
363
|
+
padding: 0;
|
364
|
+
}
|
365
|
+
|
366
|
+
/*
|
367
|
+
Prevent resizing textareas horizontally by default.
|
368
|
+
*/
|
369
|
+
|
370
|
+
textarea {
|
371
|
+
resize: vertical;
|
372
|
+
}
|
373
|
+
|
374
|
+
/*
|
375
|
+
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
376
|
+
2. Set the default placeholder color to the user's configured gray 400 color.
|
377
|
+
*/
|
378
|
+
|
379
|
+
input::-moz-placeholder, textarea::-moz-placeholder {
|
380
|
+
opacity: 1;
|
381
|
+
/* 1 */
|
382
|
+
color: #9ca3af;
|
383
|
+
/* 2 */
|
384
|
+
}
|
385
|
+
|
386
|
+
input::placeholder,
|
387
|
+
textarea::placeholder {
|
388
|
+
opacity: 1;
|
389
|
+
/* 1 */
|
390
|
+
color: #9ca3af;
|
391
|
+
/* 2 */
|
392
|
+
}
|
393
|
+
|
394
|
+
/*
|
395
|
+
Set the default cursor for buttons.
|
396
|
+
*/
|
397
|
+
|
398
|
+
button,
|
399
|
+
[role="button"] {
|
400
|
+
cursor: pointer;
|
401
|
+
}
|
402
|
+
|
403
|
+
/*
|
404
|
+
Make sure disabled buttons don't get the pointer cursor.
|
405
|
+
*/
|
406
|
+
|
407
|
+
:disabled {
|
408
|
+
cursor: default;
|
409
|
+
}
|
410
|
+
|
411
|
+
/*
|
412
|
+
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
413
|
+
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
414
|
+
This can trigger a poorly considered lint error in some tools but is included by design.
|
415
|
+
*/
|
416
|
+
|
417
|
+
img,
|
418
|
+
svg,
|
419
|
+
video,
|
420
|
+
canvas,
|
421
|
+
audio,
|
422
|
+
iframe,
|
423
|
+
embed,
|
424
|
+
object {
|
425
|
+
display: block;
|
426
|
+
/* 1 */
|
427
|
+
vertical-align: middle;
|
428
|
+
/* 2 */
|
429
|
+
}
|
430
|
+
|
431
|
+
/*
|
432
|
+
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
433
|
+
*/
|
434
|
+
|
435
|
+
img,
|
436
|
+
video {
|
437
|
+
max-width: 100%;
|
438
|
+
height: auto;
|
439
|
+
}
|
440
|
+
|
441
|
+
/* Make elements with the HTML hidden attribute stay hidden by default */
|
442
|
+
|
443
|
+
[hidden] {
|
444
|
+
display: none;
|
445
|
+
}
|
446
|
+
|
447
|
+
*, ::before, ::after {
|
448
|
+
--tw-border-spacing-x: 0;
|
449
|
+
--tw-border-spacing-y: 0;
|
450
|
+
--tw-translate-x: 0;
|
451
|
+
--tw-translate-y: 0;
|
452
|
+
--tw-rotate: 0;
|
453
|
+
--tw-skew-x: 0;
|
454
|
+
--tw-skew-y: 0;
|
455
|
+
--tw-scale-x: 1;
|
456
|
+
--tw-scale-y: 1;
|
457
|
+
--tw-pan-x: ;
|
458
|
+
--tw-pan-y: ;
|
459
|
+
--tw-pinch-zoom: ;
|
460
|
+
--tw-scroll-snap-strictness: proximity;
|
461
|
+
--tw-gradient-from-position: ;
|
462
|
+
--tw-gradient-via-position: ;
|
463
|
+
--tw-gradient-to-position: ;
|
464
|
+
--tw-ordinal: ;
|
465
|
+
--tw-slashed-zero: ;
|
466
|
+
--tw-numeric-figure: ;
|
467
|
+
--tw-numeric-spacing: ;
|
468
|
+
--tw-numeric-fraction: ;
|
469
|
+
--tw-ring-inset: ;
|
470
|
+
--tw-ring-offset-width: 0px;
|
471
|
+
--tw-ring-offset-color: #fff;
|
472
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
473
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
474
|
+
--tw-ring-shadow: 0 0 #0000;
|
475
|
+
--tw-shadow: 0 0 #0000;
|
476
|
+
--tw-shadow-colored: 0 0 #0000;
|
477
|
+
--tw-blur: ;
|
478
|
+
--tw-brightness: ;
|
479
|
+
--tw-contrast: ;
|
480
|
+
--tw-grayscale: ;
|
481
|
+
--tw-hue-rotate: ;
|
482
|
+
--tw-invert: ;
|
483
|
+
--tw-saturate: ;
|
484
|
+
--tw-sepia: ;
|
485
|
+
--tw-drop-shadow: ;
|
486
|
+
--tw-backdrop-blur: ;
|
487
|
+
--tw-backdrop-brightness: ;
|
488
|
+
--tw-backdrop-contrast: ;
|
489
|
+
--tw-backdrop-grayscale: ;
|
490
|
+
--tw-backdrop-hue-rotate: ;
|
491
|
+
--tw-backdrop-invert: ;
|
492
|
+
--tw-backdrop-opacity: ;
|
493
|
+
--tw-backdrop-saturate: ;
|
494
|
+
--tw-backdrop-sepia: ;
|
495
|
+
}
|
496
|
+
|
497
|
+
::backdrop {
|
498
|
+
--tw-border-spacing-x: 0;
|
499
|
+
--tw-border-spacing-y: 0;
|
500
|
+
--tw-translate-x: 0;
|
501
|
+
--tw-translate-y: 0;
|
502
|
+
--tw-rotate: 0;
|
503
|
+
--tw-skew-x: 0;
|
504
|
+
--tw-skew-y: 0;
|
505
|
+
--tw-scale-x: 1;
|
506
|
+
--tw-scale-y: 1;
|
507
|
+
--tw-pan-x: ;
|
508
|
+
--tw-pan-y: ;
|
509
|
+
--tw-pinch-zoom: ;
|
510
|
+
--tw-scroll-snap-strictness: proximity;
|
511
|
+
--tw-gradient-from-position: ;
|
512
|
+
--tw-gradient-via-position: ;
|
513
|
+
--tw-gradient-to-position: ;
|
514
|
+
--tw-ordinal: ;
|
515
|
+
--tw-slashed-zero: ;
|
516
|
+
--tw-numeric-figure: ;
|
517
|
+
--tw-numeric-spacing: ;
|
518
|
+
--tw-numeric-fraction: ;
|
519
|
+
--tw-ring-inset: ;
|
520
|
+
--tw-ring-offset-width: 0px;
|
521
|
+
--tw-ring-offset-color: #fff;
|
522
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
523
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
524
|
+
--tw-ring-shadow: 0 0 #0000;
|
525
|
+
--tw-shadow: 0 0 #0000;
|
526
|
+
--tw-shadow-colored: 0 0 #0000;
|
527
|
+
--tw-blur: ;
|
528
|
+
--tw-brightness: ;
|
529
|
+
--tw-contrast: ;
|
530
|
+
--tw-grayscale: ;
|
531
|
+
--tw-hue-rotate: ;
|
532
|
+
--tw-invert: ;
|
533
|
+
--tw-saturate: ;
|
534
|
+
--tw-sepia: ;
|
535
|
+
--tw-drop-shadow: ;
|
536
|
+
--tw-backdrop-blur: ;
|
537
|
+
--tw-backdrop-brightness: ;
|
538
|
+
--tw-backdrop-contrast: ;
|
539
|
+
--tw-backdrop-grayscale: ;
|
540
|
+
--tw-backdrop-hue-rotate: ;
|
541
|
+
--tw-backdrop-invert: ;
|
542
|
+
--tw-backdrop-opacity: ;
|
543
|
+
--tw-backdrop-saturate: ;
|
544
|
+
--tw-backdrop-sepia: ;
|
545
|
+
}
|
546
|
+
|
547
|
+
.container {
|
548
|
+
width: 100%;
|
549
|
+
}
|
550
|
+
|
551
|
+
@media (min-width: 640px) {
|
552
|
+
.container {
|
553
|
+
max-width: 640px;
|
554
|
+
}
|
555
|
+
}
|
556
|
+
|
557
|
+
@media (min-width: 768px) {
|
558
|
+
.container {
|
559
|
+
max-width: 768px;
|
560
|
+
}
|
561
|
+
}
|
562
|
+
|
563
|
+
@media (min-width: 1024px) {
|
564
|
+
.container {
|
565
|
+
max-width: 1024px;
|
566
|
+
}
|
567
|
+
}
|
568
|
+
|
569
|
+
@media (min-width: 1280px) {
|
570
|
+
.container {
|
571
|
+
max-width: 1280px;
|
572
|
+
}
|
573
|
+
}
|
574
|
+
|
575
|
+
@media (min-width: 1536px) {
|
576
|
+
.container {
|
577
|
+
max-width: 1536px;
|
578
|
+
}
|
579
|
+
}
|
580
|
+
|
581
|
+
.sr-only {
|
582
|
+
position: absolute;
|
583
|
+
width: 1px;
|
584
|
+
height: 1px;
|
585
|
+
padding: 0;
|
586
|
+
margin: -1px;
|
587
|
+
overflow: hidden;
|
588
|
+
clip: rect(0, 0, 0, 0);
|
589
|
+
white-space: nowrap;
|
590
|
+
border-width: 0;
|
591
|
+
}
|
592
|
+
|
593
|
+
.pointer-events-none {
|
594
|
+
pointer-events: none;
|
595
|
+
}
|
596
|
+
|
597
|
+
.\!visible {
|
598
|
+
visibility: visible !important;
|
599
|
+
}
|
600
|
+
|
601
|
+
.visible {
|
602
|
+
visibility: visible;
|
603
|
+
}
|
604
|
+
|
605
|
+
.invisible {
|
606
|
+
visibility: hidden;
|
607
|
+
}
|
608
|
+
|
609
|
+
.collapse {
|
610
|
+
visibility: collapse;
|
611
|
+
}
|
612
|
+
|
613
|
+
.static {
|
614
|
+
position: static;
|
615
|
+
}
|
616
|
+
|
617
|
+
.fixed {
|
618
|
+
position: fixed;
|
619
|
+
}
|
620
|
+
|
621
|
+
.\!absolute {
|
622
|
+
position: absolute !important;
|
623
|
+
}
|
624
|
+
|
625
|
+
.absolute {
|
626
|
+
position: absolute;
|
627
|
+
}
|
628
|
+
|
629
|
+
.\!relative {
|
630
|
+
position: relative !important;
|
631
|
+
}
|
632
|
+
|
633
|
+
.relative {
|
634
|
+
position: relative;
|
635
|
+
}
|
636
|
+
|
637
|
+
.sticky {
|
638
|
+
position: sticky;
|
639
|
+
}
|
640
|
+
|
641
|
+
.-left-2 {
|
642
|
+
left: -0.5rem;
|
643
|
+
}
|
644
|
+
|
645
|
+
.-top-2 {
|
646
|
+
top: -0.5rem;
|
647
|
+
}
|
648
|
+
|
649
|
+
.bottom-0 {
|
650
|
+
bottom: 0px;
|
651
|
+
}
|
652
|
+
|
653
|
+
.bottom-4 {
|
654
|
+
bottom: 1rem;
|
655
|
+
}
|
656
|
+
|
657
|
+
.left-0 {
|
658
|
+
left: 0px;
|
659
|
+
}
|
660
|
+
|
661
|
+
.left-1 {
|
662
|
+
left: 0.25rem;
|
663
|
+
}
|
664
|
+
|
665
|
+
.left-16 {
|
666
|
+
left: 4rem;
|
667
|
+
}
|
668
|
+
|
669
|
+
.left-2 {
|
670
|
+
left: 0.5rem;
|
671
|
+
}
|
672
|
+
|
673
|
+
.left-8 {
|
674
|
+
left: 2rem;
|
675
|
+
}
|
676
|
+
|
677
|
+
.right-0 {
|
678
|
+
right: 0px;
|
679
|
+
}
|
680
|
+
|
681
|
+
.right-2 {
|
682
|
+
right: 0.5rem;
|
683
|
+
}
|
684
|
+
|
685
|
+
.top-0 {
|
686
|
+
top: 0px;
|
687
|
+
}
|
688
|
+
|
689
|
+
.top-1 {
|
690
|
+
top: 0.25rem;
|
691
|
+
}
|
692
|
+
|
693
|
+
.isolate {
|
694
|
+
isolation: isolate;
|
695
|
+
}
|
696
|
+
|
697
|
+
.m-0 {
|
698
|
+
margin: 0px;
|
699
|
+
}
|
700
|
+
|
701
|
+
.m-3 {
|
702
|
+
margin: 0.75rem;
|
703
|
+
}
|
704
|
+
|
705
|
+
.m-8 {
|
706
|
+
margin: 2rem;
|
707
|
+
}
|
708
|
+
|
709
|
+
.my-4 {
|
710
|
+
margin-top: 1rem;
|
711
|
+
margin-bottom: 1rem;
|
712
|
+
}
|
713
|
+
|
714
|
+
.mb-1 {
|
715
|
+
margin-bottom: 0.25rem;
|
716
|
+
}
|
717
|
+
|
718
|
+
.mb-3 {
|
719
|
+
margin-bottom: 0.75rem;
|
720
|
+
}
|
721
|
+
|
722
|
+
.ml-2 {
|
723
|
+
margin-left: 0.5rem;
|
724
|
+
}
|
725
|
+
|
726
|
+
.mt-1 {
|
727
|
+
margin-top: 0.25rem;
|
728
|
+
}
|
729
|
+
|
730
|
+
.mt-2 {
|
731
|
+
margin-top: 0.5rem;
|
732
|
+
}
|
733
|
+
|
734
|
+
.line-clamp-3 {
|
735
|
+
overflow: hidden;
|
736
|
+
display: -webkit-box;
|
737
|
+
-webkit-box-orient: vertical;
|
738
|
+
-webkit-line-clamp: 3;
|
739
|
+
}
|
740
|
+
|
741
|
+
.\!block {
|
742
|
+
display: block !important;
|
743
|
+
}
|
744
|
+
|
745
|
+
.block {
|
746
|
+
display: block;
|
747
|
+
}
|
748
|
+
|
749
|
+
.inline {
|
750
|
+
display: inline;
|
751
|
+
}
|
752
|
+
|
753
|
+
.flex {
|
754
|
+
display: flex;
|
755
|
+
}
|
756
|
+
|
757
|
+
.table {
|
758
|
+
display: table;
|
759
|
+
}
|
760
|
+
|
761
|
+
.grid {
|
762
|
+
display: grid;
|
763
|
+
}
|
764
|
+
|
765
|
+
.contents {
|
766
|
+
display: contents;
|
767
|
+
}
|
768
|
+
|
769
|
+
.\!hidden {
|
770
|
+
display: none !important;
|
771
|
+
}
|
772
|
+
|
773
|
+
.hidden {
|
774
|
+
display: none;
|
775
|
+
}
|
776
|
+
|
777
|
+
.\!h-3 {
|
778
|
+
height: 0.75rem !important;
|
779
|
+
}
|
780
|
+
|
781
|
+
.\!h-4 {
|
782
|
+
height: 1rem !important;
|
783
|
+
}
|
784
|
+
|
785
|
+
.\!h-5 {
|
786
|
+
height: 1.25rem !important;
|
787
|
+
}
|
788
|
+
|
789
|
+
.\!h-full {
|
790
|
+
height: 100% !important;
|
791
|
+
}
|
792
|
+
|
793
|
+
.h-20 {
|
794
|
+
height: 5rem;
|
795
|
+
}
|
796
|
+
|
797
|
+
.h-3 {
|
798
|
+
height: 0.75rem;
|
799
|
+
}
|
800
|
+
|
801
|
+
.h-3\/5 {
|
802
|
+
height: 60%;
|
803
|
+
}
|
804
|
+
|
805
|
+
.h-32 {
|
806
|
+
height: 8rem;
|
807
|
+
}
|
808
|
+
|
809
|
+
.h-4 {
|
810
|
+
height: 1rem;
|
811
|
+
}
|
812
|
+
|
813
|
+
.h-48 {
|
814
|
+
height: 12rem;
|
815
|
+
}
|
816
|
+
|
817
|
+
.h-50 {
|
818
|
+
height: 12.5rem;
|
819
|
+
}
|
820
|
+
|
821
|
+
.h-56 {
|
822
|
+
height: 14rem;
|
823
|
+
}
|
824
|
+
|
825
|
+
.h-6 {
|
826
|
+
height: 1.5rem;
|
827
|
+
}
|
828
|
+
|
829
|
+
.h-82 {
|
830
|
+
height: 20.5rem;
|
831
|
+
}
|
832
|
+
|
833
|
+
.h-\[17rem\] {
|
834
|
+
height: 17rem;
|
835
|
+
}
|
836
|
+
|
837
|
+
.h-\[30rem\] {
|
838
|
+
height: 30rem;
|
839
|
+
}
|
840
|
+
|
841
|
+
.h-full {
|
842
|
+
height: 100%;
|
843
|
+
}
|
844
|
+
|
845
|
+
.max-h-\[17rem\] {
|
846
|
+
max-height: 17rem;
|
847
|
+
}
|
848
|
+
|
849
|
+
.max-h-full {
|
850
|
+
max-height: 100%;
|
851
|
+
}
|
852
|
+
|
853
|
+
.\!w-5 {
|
854
|
+
width: 1.25rem !important;
|
855
|
+
}
|
856
|
+
|
857
|
+
.w-20 {
|
858
|
+
width: 5rem;
|
859
|
+
}
|
860
|
+
|
861
|
+
.w-28 {
|
862
|
+
width: 7rem;
|
863
|
+
}
|
864
|
+
|
865
|
+
.w-3 {
|
866
|
+
width: 0.75rem;
|
867
|
+
}
|
868
|
+
|
869
|
+
.w-3\/4 {
|
870
|
+
width: 75%;
|
871
|
+
}
|
872
|
+
|
873
|
+
.w-3\/5 {
|
874
|
+
width: 60%;
|
875
|
+
}
|
876
|
+
|
877
|
+
.w-4 {
|
878
|
+
width: 1rem;
|
879
|
+
}
|
880
|
+
|
881
|
+
.w-4\/5 {
|
882
|
+
width: 80%;
|
883
|
+
}
|
884
|
+
|
885
|
+
.w-40 {
|
886
|
+
width: 10rem;
|
887
|
+
}
|
888
|
+
|
889
|
+
.w-44 {
|
890
|
+
width: 11rem;
|
891
|
+
}
|
892
|
+
|
893
|
+
.w-6 {
|
894
|
+
width: 1.5rem;
|
895
|
+
}
|
896
|
+
|
897
|
+
.w-70 {
|
898
|
+
width: 17.5rem;
|
899
|
+
}
|
900
|
+
|
901
|
+
.w-8 {
|
902
|
+
width: 2rem;
|
903
|
+
}
|
904
|
+
|
905
|
+
.w-96 {
|
906
|
+
width: 24rem;
|
907
|
+
}
|
908
|
+
|
909
|
+
.w-\[10rem\] {
|
910
|
+
width: 10rem;
|
911
|
+
}
|
912
|
+
|
913
|
+
.w-\[13rem\] {
|
914
|
+
width: 13rem;
|
915
|
+
}
|
916
|
+
|
917
|
+
.w-\[21rem\] {
|
918
|
+
width: 21rem;
|
919
|
+
}
|
920
|
+
|
921
|
+
.w-\[34rem\] {
|
922
|
+
width: 34rem;
|
923
|
+
}
|
924
|
+
|
925
|
+
.w-\[46rem\] {
|
926
|
+
width: 46rem;
|
927
|
+
}
|
928
|
+
|
929
|
+
.w-\[54rem\] {
|
930
|
+
width: 54rem;
|
931
|
+
}
|
932
|
+
|
933
|
+
.w-auto {
|
934
|
+
width: auto;
|
935
|
+
}
|
936
|
+
|
937
|
+
.w-full {
|
938
|
+
width: 100%;
|
939
|
+
}
|
940
|
+
|
941
|
+
.min-w-\[10rem\] {
|
942
|
+
min-width: 10rem;
|
943
|
+
}
|
944
|
+
|
945
|
+
.max-w-full {
|
946
|
+
max-width: 100%;
|
947
|
+
}
|
948
|
+
|
949
|
+
.flex-shrink {
|
950
|
+
flex-shrink: 1;
|
951
|
+
}
|
952
|
+
|
953
|
+
.shrink {
|
954
|
+
flex-shrink: 1;
|
955
|
+
}
|
956
|
+
|
957
|
+
.shrink-0 {
|
958
|
+
flex-shrink: 0;
|
959
|
+
}
|
960
|
+
|
961
|
+
.flex-grow {
|
962
|
+
flex-grow: 1;
|
963
|
+
}
|
964
|
+
|
965
|
+
.grow {
|
966
|
+
flex-grow: 1;
|
967
|
+
}
|
968
|
+
|
969
|
+
.basis-min-content {
|
970
|
+
flex-basis: min-content;
|
971
|
+
}
|
972
|
+
|
973
|
+
.table-auto {
|
974
|
+
table-layout: auto;
|
975
|
+
}
|
976
|
+
|
977
|
+
.border-collapse {
|
978
|
+
border-collapse: collapse;
|
979
|
+
}
|
980
|
+
|
981
|
+
.transform {
|
982
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
983
|
+
}
|
984
|
+
|
985
|
+
.cursor-pointer {
|
986
|
+
cursor: pointer;
|
987
|
+
}
|
988
|
+
|
989
|
+
.touch-none {
|
990
|
+
touch-action: none;
|
991
|
+
}
|
992
|
+
|
993
|
+
.resize {
|
994
|
+
resize: both;
|
995
|
+
}
|
996
|
+
|
997
|
+
.flex-col {
|
998
|
+
flex-direction: column;
|
999
|
+
}
|
1000
|
+
|
1001
|
+
.flex-wrap {
|
1002
|
+
flex-wrap: wrap;
|
1003
|
+
}
|
1004
|
+
|
1005
|
+
.content-center {
|
1006
|
+
align-content: center;
|
1007
|
+
}
|
1008
|
+
|
1009
|
+
.items-center {
|
1010
|
+
align-items: center;
|
1011
|
+
}
|
1012
|
+
|
1013
|
+
.items-baseline {
|
1014
|
+
align-items: baseline;
|
1015
|
+
}
|
1016
|
+
|
1017
|
+
.justify-end {
|
1018
|
+
justify-content: flex-end;
|
1019
|
+
}
|
1020
|
+
|
1021
|
+
.justify-center {
|
1022
|
+
justify-content: center;
|
1023
|
+
}
|
1024
|
+
|
1025
|
+
.justify-between {
|
1026
|
+
justify-content: space-between;
|
1027
|
+
}
|
1028
|
+
|
1029
|
+
.justify-stretch {
|
1030
|
+
justify-content: stretch;
|
1031
|
+
}
|
1032
|
+
|
1033
|
+
.gap-1 {
|
1034
|
+
gap: 0.25rem;
|
1035
|
+
}
|
1036
|
+
|
1037
|
+
.gap-2 {
|
1038
|
+
gap: 0.5rem;
|
1039
|
+
}
|
1040
|
+
|
1041
|
+
.gap-2\.5 {
|
1042
|
+
gap: 0.625rem;
|
1043
|
+
}
|
1044
|
+
|
1045
|
+
.gap-3 {
|
1046
|
+
gap: 0.75rem;
|
1047
|
+
}
|
1048
|
+
|
1049
|
+
.gap-4 {
|
1050
|
+
gap: 1rem;
|
1051
|
+
}
|
1052
|
+
|
1053
|
+
.gap-5 {
|
1054
|
+
gap: 1.25rem;
|
1055
|
+
}
|
1056
|
+
|
1057
|
+
.gap-8 {
|
1058
|
+
gap: 2rem;
|
1059
|
+
}
|
1060
|
+
|
1061
|
+
.gap-x-2 {
|
1062
|
+
-moz-column-gap: 0.5rem;
|
1063
|
+
column-gap: 0.5rem;
|
1064
|
+
}
|
1065
|
+
|
1066
|
+
.gap-x-4 {
|
1067
|
+
-moz-column-gap: 1rem;
|
1068
|
+
column-gap: 1rem;
|
1069
|
+
}
|
1070
|
+
|
1071
|
+
.gap-x-8 {
|
1072
|
+
-moz-column-gap: 2rem;
|
1073
|
+
column-gap: 2rem;
|
1074
|
+
}
|
1075
|
+
|
1076
|
+
.gap-y-0 {
|
1077
|
+
row-gap: 0px;
|
1078
|
+
}
|
1079
|
+
|
1080
|
+
.gap-y-0\.5 {
|
1081
|
+
row-gap: 0.125rem;
|
1082
|
+
}
|
1083
|
+
|
1084
|
+
.gap-y-2 {
|
1085
|
+
row-gap: 0.5rem;
|
1086
|
+
}
|
1087
|
+
|
1088
|
+
.self-center {
|
1089
|
+
align-self: center;
|
1090
|
+
}
|
1091
|
+
|
1092
|
+
.overflow-hidden {
|
1093
|
+
overflow: hidden;
|
1094
|
+
}
|
1095
|
+
|
1096
|
+
.truncate {
|
1097
|
+
overflow: hidden;
|
1098
|
+
text-overflow: ellipsis;
|
1099
|
+
white-space: nowrap;
|
1100
|
+
}
|
1101
|
+
|
1102
|
+
.whitespace-nowrap {
|
1103
|
+
white-space: nowrap;
|
1104
|
+
}
|
1105
|
+
|
1106
|
+
.rounded {
|
1107
|
+
border-radius: 0.25rem;
|
1108
|
+
}
|
1109
|
+
|
1110
|
+
.rounded-lg {
|
1111
|
+
border-radius: 0.5rem;
|
1112
|
+
}
|
1113
|
+
|
1114
|
+
.rounded-md {
|
1115
|
+
border-radius: 0.375rem;
|
1116
|
+
}
|
1117
|
+
|
1118
|
+
.rounded-tui-radius-m {
|
1119
|
+
border-radius: var(--tui-radius-m);
|
1120
|
+
}
|
1121
|
+
|
1122
|
+
.rounded-tui-radius-s {
|
1123
|
+
border-radius: var(--tui-radius-s);
|
1124
|
+
}
|
1125
|
+
|
1126
|
+
.rounded-xl {
|
1127
|
+
border-radius: 0.75rem;
|
1128
|
+
}
|
1129
|
+
|
1130
|
+
.rounded-b {
|
1131
|
+
border-bottom-right-radius: 0.25rem;
|
1132
|
+
border-bottom-left-radius: 0.25rem;
|
1133
|
+
}
|
1134
|
+
|
1135
|
+
.rounded-t {
|
1136
|
+
border-top-left-radius: 0.25rem;
|
1137
|
+
border-top-right-radius: 0.25rem;
|
1138
|
+
}
|
1139
|
+
|
1140
|
+
.border {
|
1141
|
+
border-width: 1px;
|
1142
|
+
}
|
1143
|
+
|
1144
|
+
.border-b {
|
1145
|
+
border-bottom-width: 1px;
|
1146
|
+
}
|
1147
|
+
|
1148
|
+
.border-tui-base-04 {
|
1149
|
+
border-color: var(--tui-base-04);
|
1150
|
+
}
|
1151
|
+
|
1152
|
+
.bg-tui-base-02 {
|
1153
|
+
background-color: var(--tui-base-02);
|
1154
|
+
}
|
1155
|
+
|
1156
|
+
.bg-tui-primary {
|
1157
|
+
background-color: var(--tui-primary);
|
1158
|
+
}
|
1159
|
+
|
1160
|
+
.bg-white {
|
1161
|
+
--tw-bg-opacity: 1;
|
1162
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
1163
|
+
}
|
1164
|
+
|
1165
|
+
.bg-cover {
|
1166
|
+
background-size: cover;
|
1167
|
+
}
|
1168
|
+
|
1169
|
+
.bg-center {
|
1170
|
+
background-position: center;
|
1171
|
+
}
|
1172
|
+
|
1173
|
+
.bg-no-repeat {
|
1174
|
+
background-repeat: no-repeat;
|
1175
|
+
}
|
1176
|
+
|
1177
|
+
.object-cover {
|
1178
|
+
-o-object-fit: cover;
|
1179
|
+
object-fit: cover;
|
1180
|
+
}
|
1181
|
+
|
1182
|
+
.p-0 {
|
1183
|
+
padding: 0px;
|
1184
|
+
}
|
1185
|
+
|
1186
|
+
.p-10 {
|
1187
|
+
padding: 2.5rem;
|
1188
|
+
}
|
1189
|
+
|
1190
|
+
.p-2 {
|
1191
|
+
padding: 0.5rem;
|
1192
|
+
}
|
1193
|
+
|
1194
|
+
.p-3 {
|
1195
|
+
padding: 0.75rem;
|
1196
|
+
}
|
1197
|
+
|
1198
|
+
.p-4 {
|
1199
|
+
padding: 1rem;
|
1200
|
+
}
|
1201
|
+
|
1202
|
+
.p-5 {
|
1203
|
+
padding: 1.25rem;
|
1204
|
+
}
|
1205
|
+
|
1206
|
+
.px-1 {
|
1207
|
+
padding-left: 0.25rem;
|
1208
|
+
padding-right: 0.25rem;
|
1209
|
+
}
|
1210
|
+
|
1211
|
+
.px-6 {
|
1212
|
+
padding-left: 1.5rem;
|
1213
|
+
padding-right: 1.5rem;
|
1214
|
+
}
|
1215
|
+
|
1216
|
+
.py-4 {
|
1217
|
+
padding-top: 1rem;
|
1218
|
+
padding-bottom: 1rem;
|
1219
|
+
}
|
1220
|
+
|
1221
|
+
.py-4\.5 {
|
1222
|
+
padding-top: 1.125rem;
|
1223
|
+
padding-bottom: 1.125rem;
|
1224
|
+
}
|
1225
|
+
|
1226
|
+
.text-left {
|
1227
|
+
text-align: left;
|
1228
|
+
}
|
1229
|
+
|
1230
|
+
.text-center {
|
1231
|
+
text-align: center;
|
1232
|
+
}
|
1233
|
+
|
1234
|
+
.text-end {
|
1235
|
+
text-align: end;
|
1236
|
+
}
|
1237
|
+
|
1238
|
+
.align-baseline {
|
1239
|
+
vertical-align: baseline;
|
1240
|
+
}
|
1241
|
+
|
1242
|
+
.\!text-2xl {
|
1243
|
+
font-size: 1.5rem !important;
|
1244
|
+
line-height: 2rem !important;
|
1245
|
+
}
|
1246
|
+
|
1247
|
+
.\!text-\[0\.75rem\] {
|
1248
|
+
font-size: 0.75rem !important;
|
1249
|
+
}
|
1250
|
+
|
1251
|
+
.\!text-xs {
|
1252
|
+
font-size: 0.75rem !important;
|
1253
|
+
line-height: 1rem !important;
|
1254
|
+
}
|
1255
|
+
|
1256
|
+
.text-\[0\.75rem\] {
|
1257
|
+
font-size: 0.75rem;
|
1258
|
+
}
|
1259
|
+
|
1260
|
+
.text-\[0\.875rem\] {
|
1261
|
+
font-size: 0.875rem;
|
1262
|
+
}
|
1263
|
+
|
1264
|
+
.text-lg {
|
1265
|
+
font-size: 1.125rem;
|
1266
|
+
line-height: 1.75rem;
|
1267
|
+
}
|
1268
|
+
|
1269
|
+
.text-sm {
|
1270
|
+
font-size: 0.875rem;
|
1271
|
+
line-height: 1.25rem;
|
1272
|
+
}
|
1273
|
+
|
1274
|
+
.text-xs {
|
1275
|
+
font-size: 0.75rem;
|
1276
|
+
line-height: 1rem;
|
1277
|
+
}
|
1278
|
+
|
1279
|
+
.font-bold {
|
1280
|
+
font-weight: 700;
|
1281
|
+
}
|
1282
|
+
|
1283
|
+
.uppercase {
|
1284
|
+
text-transform: uppercase;
|
1285
|
+
}
|
1286
|
+
|
1287
|
+
.lowercase {
|
1288
|
+
text-transform: lowercase;
|
1289
|
+
}
|
1290
|
+
|
1291
|
+
.capitalize {
|
1292
|
+
text-transform: capitalize;
|
1293
|
+
}
|
1294
|
+
|
1295
|
+
.italic {
|
1296
|
+
font-style: italic;
|
1297
|
+
}
|
1298
|
+
|
1299
|
+
.ordinal {
|
1300
|
+
--tw-ordinal: ordinal;
|
1301
|
+
font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
|
1302
|
+
}
|
1303
|
+
|
1304
|
+
.text-\[\#526ED3\] {
|
1305
|
+
--tw-text-opacity: 1;
|
1306
|
+
color: rgb(82 110 211 / var(--tw-text-opacity));
|
1307
|
+
}
|
1308
|
+
|
1309
|
+
.text-black {
|
1310
|
+
--tw-text-opacity: 1;
|
1311
|
+
color: rgb(0 0 0 / var(--tw-text-opacity));
|
1312
|
+
}
|
1313
|
+
|
1314
|
+
.text-green-600 {
|
1315
|
+
--tw-text-opacity: 1;
|
1316
|
+
color: rgb(22 163 74 / var(--tw-text-opacity));
|
1317
|
+
}
|
1318
|
+
|
1319
|
+
.text-red-700 {
|
1320
|
+
--tw-text-opacity: 1;
|
1321
|
+
color: rgb(185 28 28 / var(--tw-text-opacity));
|
1322
|
+
}
|
1323
|
+
|
1324
|
+
.text-tui-base-09 {
|
1325
|
+
color: var(--tui-base-09);
|
1326
|
+
}
|
1327
|
+
|
1328
|
+
.text-tui-error-fill {
|
1329
|
+
color: var(--tui-error-fill);
|
1330
|
+
}
|
1331
|
+
|
1332
|
+
.text-tui-primary {
|
1333
|
+
color: var(--tui-primary);
|
1334
|
+
}
|
1335
|
+
|
1336
|
+
.text-tui-success-fill {
|
1337
|
+
color: var(--tui-success-fill);
|
1338
|
+
}
|
1339
|
+
|
1340
|
+
.text-tui-text-02 {
|
1341
|
+
color: var(--tui-text-02);
|
1342
|
+
}
|
1343
|
+
|
1344
|
+
.underline {
|
1345
|
+
text-decoration-line: underline;
|
1346
|
+
}
|
1347
|
+
|
1348
|
+
.overline {
|
1349
|
+
text-decoration-line: overline;
|
1350
|
+
}
|
1351
|
+
|
1352
|
+
.line-through {
|
1353
|
+
text-decoration-line: line-through;
|
1354
|
+
}
|
1355
|
+
|
1356
|
+
.shadow {
|
1357
|
+
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
1358
|
+
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
1359
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1360
|
+
}
|
1361
|
+
|
1362
|
+
.shadow-md {
|
1363
|
+
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
1364
|
+
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
1365
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1366
|
+
}
|
1367
|
+
|
1368
|
+
.shadow-sc-1 {
|
1369
|
+
--tw-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.10);
|
1370
|
+
--tw-shadow-colored: 0px 5px 20px 0px var(--tw-shadow-color);
|
1371
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1372
|
+
}
|
1373
|
+
|
1374
|
+
.shadow-sc-2 {
|
1375
|
+
--tw-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.10);
|
1376
|
+
--tw-shadow-colored: 0px 2px 3px 0px var(--tw-shadow-color);
|
1377
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1378
|
+
}
|
1379
|
+
|
1380
|
+
.outline {
|
1381
|
+
outline-style: solid;
|
1382
|
+
}
|
1383
|
+
|
1384
|
+
.ring {
|
1385
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
1386
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
1387
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
1388
|
+
}
|
1389
|
+
|
1390
|
+
.blur {
|
1391
|
+
--tw-blur: blur(8px);
|
1392
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
1393
|
+
}
|
1394
|
+
|
1395
|
+
.grayscale {
|
1396
|
+
--tw-grayscale: grayscale(100%);
|
1397
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
1398
|
+
}
|
1399
|
+
|
1400
|
+
.invert {
|
1401
|
+
--tw-invert: invert(100%);
|
1402
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
1403
|
+
}
|
1404
|
+
|
1405
|
+
.sepia {
|
1406
|
+
--tw-sepia: sepia(100%);
|
1407
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
1408
|
+
}
|
1409
|
+
|
1410
|
+
.filter {
|
1411
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
1412
|
+
}
|
1413
|
+
|
1414
|
+
.backdrop-filter {
|
1415
|
+
-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
1416
|
+
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
1417
|
+
}
|
1418
|
+
|
1419
|
+
.\!transition {
|
1420
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important;
|
1421
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
|
1422
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important;
|
1423
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
|
1424
|
+
transition-duration: 150ms !important;
|
1425
|
+
}
|
1426
|
+
|
1427
|
+
.transition {
|
1428
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
1429
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
1430
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
|
1431
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
1432
|
+
transition-duration: 150ms;
|
1433
|
+
}
|
1434
|
+
|
1435
|
+
.duration-300 {
|
1436
|
+
transition-duration: 300ms;
|
1437
|
+
}
|
1438
|
+
|
1439
|
+
.ease-in {
|
1440
|
+
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
1441
|
+
}
|
1442
|
+
|
1443
|
+
.ease-in-out {
|
1444
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
1445
|
+
}
|
1446
|
+
|
1447
|
+
.ease-out {
|
1448
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
1449
|
+
}
|
1450
|
+
|
1451
|
+
.\[fs\:0\] {
|
1452
|
+
fs: 0;
|
1453
|
+
}
|
1454
|
+
|
1455
|
+
.\[k\:string\] {
|
1456
|
+
k: string;
|
1457
|
+
}
|
1458
|
+
|
1459
|
+
.group:hover .group-hover\:block {
|
1460
|
+
display: block;
|
1461
|
+
}
|