@mptw/skylens-ui 1.5.16 → 1.5.18
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/app/components/SLAlertModal.vue +18 -18
- package/app/components/SLButton.vue +108 -148
- package/app/components/SLCalendarButton.vue +24 -24
- package/app/components/SLCard.vue +44 -44
- package/app/components/SLCheckbox.vue +45 -46
- package/app/components/SLCircleButton.vue +13 -13
- package/app/components/SLCollapsableBlock.vue +15 -15
- package/app/components/SLCollapsableMulitPillSelect.vue +9 -9
- package/app/components/SLContextMenu.vue +9 -9
- package/app/components/SLDateInput.vue +41 -48
- package/app/components/SLDownloadButton.vue +12 -12
- package/app/components/SLDropdown.vue +21 -21
- package/app/components/SLDropdownItem.vue +3 -3
- package/app/components/SLElementWithTitle.vue +3 -3
- package/app/components/SLEyeCheckbox.vue +36 -36
- package/app/components/SLFileInput.vue +16 -16
- package/app/components/SLGenderAgeSelect.vue +39 -39
- package/app/components/SLHourRangeInput.vue +19 -20
- package/app/components/SLIOSSwitch.vue +72 -73
- package/app/components/SLIconButton.vue +29 -21
- package/app/components/SLInfoTip.vue +35 -36
- package/app/components/SLLegend.vue +9 -9
- package/app/components/SLLink.vue +3 -3
- package/app/components/SLLoading.vue +25 -25
- package/app/components/SLModal.vue +79 -79
- package/app/components/SLMonthCalendarButton.vue +46 -46
- package/app/components/SLMonthPicker.vue +28 -30
- package/app/components/SLMultiEmailInput.vue +72 -72
- package/app/components/SLMultiSelect.vue +27 -29
- package/app/components/SLPageModal.vue +5 -5
- package/app/components/SLPagination.vue +31 -31
- package/app/components/SLPillCheckbox.vue +42 -42
- package/app/components/SLPillLabel.vue +36 -36
- package/app/components/SLPopupMenuButton.vue +16 -16
- package/app/components/SLProfileButton.vue +17 -17
- package/app/components/SLProjectShareItem.vue +18 -17
- package/app/components/SLRadioButton.vue +33 -33
- package/app/components/SLRadioButtonGroup.vue +6 -6
- package/app/components/SLRadioGroup.vue +93 -93
- package/app/components/SLRangeInput.vue +17 -19
- package/app/components/SLRightSider.vue +19 -20
- package/app/components/SLSearchInput.vue +7 -7
- package/app/components/SLSelect.vue +90 -92
- package/app/components/SLSelectAllToggle.vue +45 -45
- package/app/components/SLSidebarNav.vue +148 -151
- package/app/components/SLSidebarNavGroupItemSection.vue +70 -78
- package/app/components/SLSidebarNavLinkItem.vue +51 -53
- package/app/components/SLSitePage.vue +6 -6
- package/app/components/SLSortByDropdown.vue +18 -18
- package/app/components/SLStayRangeInput.vue +40 -40
- package/app/components/SLTable.vue +56 -59
- package/app/components/SLTableTooltip.vue +31 -33
- package/app/components/SLTabs.vue +220 -220
- package/app/components/SLTextInput.vue +64 -74
- package/app/components/SLTextarea.vue +9 -9
- package/app/components/SLToast.vue +1 -2
- package/app/components/SLToggleButton.vue +12 -12
- package/app/components/SLTwoLayerMultiSelect.vue +56 -56
- package/app/components/SLTwoLayerSelect.vue +39 -39
- package/app/components/SLTwoLayerSingleSelect.vue +21 -21
- package/app/components/SLWarnModal.vue +3 -3
- package/package.json +1 -1
|
@@ -79,29 +79,29 @@ export default defineComponent({
|
|
|
79
79
|
|
|
80
80
|
.alert-modal {
|
|
81
81
|
@apply z-60;
|
|
82
|
-
}
|
|
83
82
|
|
|
84
|
-
.
|
|
85
|
-
|
|
86
|
-
}
|
|
83
|
+
.modal-body-content {
|
|
84
|
+
@apply text-base leading-6 text-pgray-2 text-center space-y-4;
|
|
87
85
|
|
|
88
|
-
.
|
|
89
|
-
|
|
90
|
-
}
|
|
86
|
+
.icon {
|
|
87
|
+
@apply text-7p17xl;
|
|
88
|
+
}
|
|
91
89
|
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
}
|
|
90
|
+
p {
|
|
91
|
+
@apply whitespace-pre-wrap;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
95
94
|
|
|
96
|
-
.
|
|
97
|
-
|
|
98
|
-
}
|
|
95
|
+
.modal-backdrop {
|
|
96
|
+
@apply bg-white/40 backdrop-blur-[5px];
|
|
99
97
|
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
}
|
|
98
|
+
&.show {
|
|
99
|
+
@apply bg-white/40;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
103
102
|
|
|
104
|
-
.
|
|
105
|
-
|
|
103
|
+
.modal-footer {
|
|
104
|
+
@apply flex justify-center;
|
|
105
|
+
}
|
|
106
106
|
}
|
|
107
107
|
</style>
|
|
@@ -120,198 +120,186 @@ export default defineComponent({
|
|
|
120
120
|
|
|
121
121
|
.btn {
|
|
122
122
|
@apply relative inline-flex items-center justify-center p-1.75 border border-transparent rounded bg-transparent text-base leading-[1.3125] focus:outline-none;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
.btn.btn-lg {
|
|
126
|
-
@apply px-7.75;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
.btn.btn-md {
|
|
130
|
-
@apply px-3.75;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
.btn.btn-sm {
|
|
134
|
-
@apply py-0.75 px-1.75;
|
|
135
|
-
}
|
|
136
123
|
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
}
|
|
124
|
+
&.btn-lg {
|
|
125
|
+
@apply px-7.75;
|
|
126
|
+
}
|
|
140
127
|
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
}
|
|
128
|
+
&.btn-md {
|
|
129
|
+
@apply px-3.75;
|
|
130
|
+
}
|
|
144
131
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
}
|
|
132
|
+
&.btn-sm {
|
|
133
|
+
@apply py-0.75 px-1.75;
|
|
134
|
+
}
|
|
148
135
|
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
}
|
|
136
|
+
&.btn-xs {
|
|
137
|
+
@apply py-0.75 px-1.75 text-xs;
|
|
138
|
+
}
|
|
152
139
|
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
}
|
|
140
|
+
&.btn-xxs {
|
|
141
|
+
@apply p-0.75 text-sm;
|
|
142
|
+
}
|
|
156
143
|
|
|
157
|
-
|
|
158
|
-
|
|
144
|
+
&.loading {
|
|
145
|
+
@apply bg-primary-200 border-primary-200 cursor-default;
|
|
146
|
+
}
|
|
159
147
|
}
|
|
160
148
|
|
|
161
149
|
.btn-white {
|
|
162
150
|
@apply bg-white border-white text-pgray-2 hover:bg-white hover:border-white;
|
|
163
|
-
}
|
|
164
151
|
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
}
|
|
152
|
+
&.btn-outline {
|
|
153
|
+
@apply text-pgray-2 hover:text-pgray-2;
|
|
154
|
+
}
|
|
168
155
|
|
|
169
|
-
.btn-
|
|
170
|
-
|
|
156
|
+
.btn-loading .loading div {
|
|
157
|
+
border-color: white transparent transparent transparent;
|
|
158
|
+
}
|
|
171
159
|
}
|
|
172
160
|
|
|
173
161
|
.btn-primary {
|
|
174
162
|
@apply bg-primary border-primary text-white hover:bg-primary-800 hover:border-primary-800;
|
|
175
|
-
}
|
|
176
163
|
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
}
|
|
164
|
+
&.btn-outline {
|
|
165
|
+
@apply text-primary hover:text-primary-800;
|
|
166
|
+
}
|
|
180
167
|
|
|
181
|
-
.btn-
|
|
182
|
-
|
|
168
|
+
.btn-loading .loading div {
|
|
169
|
+
border-color: var(--color-primary) transparent transparent transparent;
|
|
170
|
+
}
|
|
183
171
|
}
|
|
184
172
|
|
|
185
173
|
.btn-primary-600 {
|
|
186
174
|
@apply bg-primary-600 border-primary-600 text-white hover:bg-primary hover:border-primary;
|
|
187
|
-
}
|
|
188
175
|
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
}
|
|
176
|
+
&.btn-outline {
|
|
177
|
+
@apply text-primary-600 hover:text-primary;
|
|
178
|
+
}
|
|
192
179
|
|
|
193
|
-
.btn-
|
|
194
|
-
|
|
180
|
+
.btn-loading .loading div {
|
|
181
|
+
border-color: var(--color-primary-600) transparent transparent transparent;
|
|
182
|
+
}
|
|
195
183
|
}
|
|
196
184
|
|
|
197
185
|
.btn-highlight-500 {
|
|
198
186
|
@apply bg-highlight-500 border-highlight-500 text-white hover:bg-highlight-400 hover:text-white hover:border-highlight-400;
|
|
199
|
-
}
|
|
200
187
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
}
|
|
188
|
+
&.btn-outline {
|
|
189
|
+
@apply text-highlight-500 hover:text-highlight-400;
|
|
190
|
+
}
|
|
204
191
|
|
|
205
|
-
.btn-
|
|
206
|
-
|
|
192
|
+
.btn-loading .loading div {
|
|
193
|
+
border-color: var(--color-highlight-400) transparent transparent transparent;
|
|
194
|
+
}
|
|
207
195
|
}
|
|
208
196
|
|
|
209
197
|
.btn-third {
|
|
210
198
|
@apply bg-third border-third text-white hover:bg-third-600 hover:text-white hover:border-third-600;
|
|
211
|
-
}
|
|
212
199
|
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
}
|
|
200
|
+
&.btn-outline {
|
|
201
|
+
@apply text-third hover:text-third-600;
|
|
202
|
+
}
|
|
216
203
|
|
|
217
|
-
.btn-
|
|
218
|
-
|
|
204
|
+
.btn-loading .loading div {
|
|
205
|
+
border-color: var(--color-third-600) transparent transparent transparent;
|
|
206
|
+
}
|
|
219
207
|
}
|
|
220
208
|
|
|
221
209
|
.btn-danger {
|
|
222
210
|
@apply bg-danger border-danger text-white hover:bg-danger-light hover:border-danger-light;
|
|
223
|
-
}
|
|
224
211
|
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
}
|
|
212
|
+
&.btn-outline {
|
|
213
|
+
@apply text-danger hover:text-danger-light;
|
|
214
|
+
}
|
|
228
215
|
|
|
229
|
-
.btn-
|
|
230
|
-
|
|
216
|
+
.btn-loading .loading div {
|
|
217
|
+
border-color: var(--color-danger-light) transparent transparent transparent;
|
|
218
|
+
}
|
|
231
219
|
}
|
|
232
220
|
|
|
233
221
|
.btn-pgray-5 {
|
|
234
222
|
@apply bg-pgray-5 border-pgray-5 text-pgray-2 hover:bg-pgray-4p5 hover:border-pgray-4p5;
|
|
235
|
-
}
|
|
236
223
|
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
}
|
|
224
|
+
&.btn-outline {
|
|
225
|
+
@apply text-pgray-5 hover:text-pgray-4p5;
|
|
226
|
+
}
|
|
240
227
|
|
|
241
|
-
.btn-
|
|
242
|
-
|
|
228
|
+
.btn-loading .loading div {
|
|
229
|
+
border-color: var(--color-pgray-4p5) transparent transparent transparent;
|
|
230
|
+
}
|
|
243
231
|
}
|
|
244
232
|
|
|
245
233
|
.btn-pgray-2 {
|
|
246
234
|
@apply bg-pgray-2 border-pgray-2 text-white hover:bg-pgray-3 hover:border-pgray-3;
|
|
247
|
-
}
|
|
248
235
|
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
}
|
|
236
|
+
&.btn-outline {
|
|
237
|
+
@apply text-pgray-2 hover:text-pgray-3;
|
|
238
|
+
}
|
|
252
239
|
|
|
253
|
-
.btn-
|
|
254
|
-
|
|
240
|
+
.btn-loading .loading div {
|
|
241
|
+
border-color: var(--color-pgray-3) transparent transparent transparent;
|
|
242
|
+
}
|
|
255
243
|
}
|
|
256
244
|
|
|
257
245
|
.btn-secondary {
|
|
258
246
|
@apply bg-secondary border-secondary text-white hover:bg-secondary-800 hover:border-secondary-800;
|
|
259
|
-
}
|
|
260
247
|
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
}
|
|
248
|
+
&.btn-outline {
|
|
249
|
+
@apply text-secondary hover:text-secondary-800;
|
|
250
|
+
}
|
|
264
251
|
|
|
265
|
-
.btn-
|
|
266
|
-
|
|
252
|
+
.btn-loading .loading div {
|
|
253
|
+
border-color: var(--color-secondary-500) transparent transparent transparent;
|
|
254
|
+
}
|
|
267
255
|
}
|
|
268
256
|
|
|
269
257
|
.btn-secondary-200 {
|
|
270
258
|
@apply bg-secondary-200 border-secondary-200 text-secondary hover:bg-secondary hover:border-secondary hover:text-white;
|
|
271
|
-
}
|
|
272
259
|
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
}
|
|
260
|
+
&.btn-outline {
|
|
261
|
+
@apply text-secondary-200 hover:text-secondary;
|
|
262
|
+
}
|
|
276
263
|
|
|
277
|
-
.btn-
|
|
278
|
-
|
|
264
|
+
.btn-loading .loading div {
|
|
265
|
+
border-color: var(--color-secondary-500) transparent transparent transparent;
|
|
266
|
+
}
|
|
279
267
|
}
|
|
280
268
|
|
|
281
269
|
.btn-secondary-600 {
|
|
282
270
|
@apply bg-secondary-600 border-secondary-600 text-white hover:bg-secondary hover:border-secondary;
|
|
283
|
-
}
|
|
284
271
|
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
}
|
|
272
|
+
&.btn-outline {
|
|
273
|
+
@apply text-secondary-600 hover:text-secondary;
|
|
274
|
+
}
|
|
288
275
|
|
|
289
|
-
.btn-
|
|
290
|
-
|
|
276
|
+
.btn-loading .loading div {
|
|
277
|
+
border-color: var(--color-secondary-500) transparent transparent transparent;
|
|
278
|
+
}
|
|
291
279
|
}
|
|
292
280
|
|
|
293
281
|
.btn-blue-1 {
|
|
294
282
|
@apply bg-secondary border-secondary text-white hover:bg-blue-1 hover:border-blue-1;
|
|
295
|
-
}
|
|
296
283
|
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
}
|
|
284
|
+
&.btn-outline {
|
|
285
|
+
@apply text-blue-1 hover:text-blue-1;
|
|
286
|
+
}
|
|
300
287
|
|
|
301
|
-
.btn-
|
|
302
|
-
|
|
288
|
+
.btn-loading .loading div {
|
|
289
|
+
border-color: var(--color-blue-1) transparent transparent transparent;
|
|
290
|
+
}
|
|
303
291
|
}
|
|
304
292
|
|
|
305
293
|
.btn-insight-title-line {
|
|
306
294
|
@apply bg-insight-title-line border-insight-title-line text-white hover:bg-insight-title-line hover:border-insight-title-line;
|
|
307
|
-
}
|
|
308
295
|
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
}
|
|
296
|
+
&.btn-outline {
|
|
297
|
+
@apply text-insight-title hover:text-insight-title;
|
|
298
|
+
}
|
|
312
299
|
|
|
313
|
-
.btn-
|
|
314
|
-
|
|
300
|
+
.btn-loading .loading div {
|
|
301
|
+
border-color: var(--color-blue-1) transparent transparent transparent;
|
|
302
|
+
}
|
|
315
303
|
}
|
|
316
304
|
|
|
317
305
|
.btn-outline {
|
|
@@ -320,57 +308,29 @@ export default defineComponent({
|
|
|
320
308
|
|
|
321
309
|
.btn-disabled {
|
|
322
310
|
@apply bg-pgray-5 border-pgray-5 text-white cursor-default hover:bg-pgray-5 hover:border-pgray-5 hover:text-white;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
.btn-disabled.btn-outline {
|
|
326
|
-
@apply bg-white border-pgray-5 text-pgray-5 hover:bg-white hover:border-pgray-5 hover:text-pgray-5;
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
.btn-disabled.btn-icon {
|
|
330
|
-
@apply bg-transparent border-transparent text-pgray-5 hover:bg-transparent hover:border-transparent hover:text-pgray-5;
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
.btn.loading {
|
|
334
|
-
@apply bg-primary-200 border-primary-200 cursor-default;
|
|
335
|
-
}
|
|
336
311
|
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
}
|
|
312
|
+
&.btn-outline {
|
|
313
|
+
@apply bg-white border-pgray-5 text-pgray-5 hover:bg-white hover:border-pgray-5 hover:text-pgray-5;
|
|
314
|
+
}
|
|
340
315
|
|
|
341
|
-
|
|
342
|
-
|
|
316
|
+
&.btn-icon {
|
|
317
|
+
@apply bg-transparent border-transparent text-pgray-5 hover:bg-transparent hover:border-transparent hover:text-pgray-5;
|
|
318
|
+
}
|
|
343
319
|
}
|
|
344
320
|
|
|
345
321
|
.btn-content {
|
|
346
322
|
@apply inline-flex items-center space-x-1;
|
|
347
|
-
}
|
|
348
323
|
|
|
349
|
-
.
|
|
350
|
-
|
|
324
|
+
.icon.btn-icon {
|
|
325
|
+
@apply inline-flex text-xs leading-none;
|
|
326
|
+
}
|
|
351
327
|
}
|
|
352
328
|
|
|
353
329
|
.btn-loading {
|
|
354
330
|
@apply absolute top-1/2 left-1/2 w-4 h-4 -translate-x-1/2 -translate-y-1/2 pointer-events-none hidden;
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
.btn-loading .loading {
|
|
358
|
-
@apply relative inline-block w-4 h-4;
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
.btn-loading .loading div {
|
|
362
|
-
@apply absolute block w-4 h-4 border-2 rounded-full animate-loading;
|
|
363
|
-
}
|
|
364
|
-
|
|
365
|
-
.btn-loading .loading div:nth-child(1) {
|
|
366
|
-
animation-delay: -0.45s;
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
.btn-loading .loading div:nth-child(2) {
|
|
370
|
-
animation-delay: -0.3s;
|
|
371
|
-
}
|
|
372
331
|
|
|
373
|
-
.
|
|
374
|
-
|
|
332
|
+
.loading {
|
|
333
|
+
@apply relative inline-block w-4 h-4;
|
|
334
|
+
}
|
|
375
335
|
}
|
|
376
336
|
</style>
|
|
@@ -245,41 +245,41 @@ export default defineComponent({
|
|
|
245
245
|
|
|
246
246
|
.calendar-button {
|
|
247
247
|
@apply inline-block;
|
|
248
|
-
}
|
|
249
248
|
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
}
|
|
249
|
+
&.calendar-button--compact .toggle-button {
|
|
250
|
+
@apply h-[37px];
|
|
251
|
+
}
|
|
253
252
|
|
|
254
|
-
.
|
|
255
|
-
|
|
256
|
-
}
|
|
253
|
+
.toggle-button {
|
|
254
|
+
@apply inline-flex flex-col justify-center h-[58px] px-2.75 space-y-1 border border-white/20 rounded bg-white text-sm leading-[1.3125] text-pgray-2;
|
|
257
255
|
|
|
258
|
-
.
|
|
259
|
-
|
|
260
|
-
}
|
|
256
|
+
.compare-date-range {
|
|
257
|
+
@apply pl-1 space-x-2 text-sm text-pgray-3;
|
|
258
|
+
}
|
|
261
259
|
|
|
262
|
-
.
|
|
263
|
-
|
|
264
|
-
}
|
|
260
|
+
.date-range {
|
|
261
|
+
@apply flex items-center;
|
|
265
262
|
|
|
266
|
-
.
|
|
267
|
-
|
|
268
|
-
}
|
|
263
|
+
.range-days {
|
|
264
|
+
@apply block ml-0.5 px-1 py-0.5 bg-primary-50 rounded text-xs text-primary;
|
|
265
|
+
}
|
|
269
266
|
|
|
270
|
-
.
|
|
271
|
-
|
|
272
|
-
}
|
|
267
|
+
.divider {
|
|
268
|
+
@apply grow-0 shrink-0 block w-px h-4.75 ml-2 mr-1.75 bg-primary;
|
|
269
|
+
}
|
|
273
270
|
|
|
274
|
-
.
|
|
275
|
-
|
|
271
|
+
.icon {
|
|
272
|
+
@apply grow-0 shrink-0 text-base text-primary leading-none;
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
276
|
}
|
|
277
277
|
|
|
278
278
|
.calendar-popup {
|
|
279
279
|
@apply z-60 absolute invisible pointer-events-none;
|
|
280
|
-
}
|
|
281
280
|
|
|
282
|
-
|
|
283
|
-
|
|
281
|
+
&[data-show] {
|
|
282
|
+
@apply visible pointer-events-auto;
|
|
283
|
+
}
|
|
284
284
|
}
|
|
285
285
|
</style>
|
|
@@ -71,69 +71,69 @@ export default defineComponent({
|
|
|
71
71
|
|
|
72
72
|
.tabs .card {
|
|
73
73
|
@apply rounded-lg border-primary-300 shadow-md;
|
|
74
|
-
}
|
|
75
74
|
|
|
76
|
-
.
|
|
77
|
-
|
|
75
|
+
.card {
|
|
76
|
+
@apply border-0 rounded-none shadow-none;
|
|
77
|
+
}
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
.card {
|
|
81
81
|
@apply p-4 border border-primary-600 rounded bg-white shadow-default;
|
|
82
|
-
}
|
|
83
82
|
|
|
84
|
-
.card
|
|
85
|
-
|
|
86
|
-
}
|
|
83
|
+
.card-prepend {
|
|
84
|
+
@apply mb-4;
|
|
85
|
+
}
|
|
87
86
|
|
|
88
|
-
.card
|
|
89
|
-
|
|
90
|
-
}
|
|
87
|
+
.card-header {
|
|
88
|
+
@apply flex justify-between mb-4;
|
|
91
89
|
|
|
92
|
-
.card
|
|
93
|
-
|
|
94
|
-
}
|
|
90
|
+
.card-title-container {
|
|
91
|
+
@apply inline-flex items-center mb-2 text-lg text-primary;
|
|
95
92
|
|
|
96
|
-
.
|
|
97
|
-
|
|
98
|
-
}
|
|
93
|
+
.title-icon {
|
|
94
|
+
@apply ml-2;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
99
97
|
|
|
100
|
-
.card
|
|
101
|
-
|
|
102
|
-
}
|
|
98
|
+
.card-title-container {
|
|
99
|
+
@apply mb-0 text-base text-pgray-2;
|
|
100
|
+
}
|
|
103
101
|
|
|
104
|
-
.card
|
|
105
|
-
|
|
106
|
-
}
|
|
102
|
+
.card-title-border {
|
|
103
|
+
@apply h-0.5 rounded-full bg-highlight-500;
|
|
104
|
+
}
|
|
107
105
|
|
|
108
|
-
.card
|
|
109
|
-
|
|
110
|
-
}
|
|
106
|
+
.card-title-border {
|
|
107
|
+
@apply hidden;
|
|
108
|
+
}
|
|
111
109
|
|
|
112
|
-
.
|
|
113
|
-
|
|
114
|
-
}
|
|
110
|
+
.inline-info {
|
|
111
|
+
@apply mt-2 text-sm text-pgray-3;
|
|
112
|
+
}
|
|
115
113
|
|
|
116
|
-
.card
|
|
117
|
-
|
|
118
|
-
}
|
|
114
|
+
.card-title {
|
|
115
|
+
@apply inline-flex flex-col;
|
|
116
|
+
}
|
|
119
117
|
|
|
120
|
-
.card
|
|
121
|
-
|
|
122
|
-
}
|
|
118
|
+
.card-desc {
|
|
119
|
+
@apply text-base text-pgray-2;
|
|
123
120
|
|
|
124
|
-
.
|
|
125
|
-
|
|
126
|
-
}
|
|
121
|
+
.date-range {
|
|
122
|
+
@apply ml-2 text-sm text-pgray-3;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
127
126
|
|
|
128
|
-
.card {
|
|
129
|
-
|
|
130
|
-
}
|
|
127
|
+
.card-footer {
|
|
128
|
+
@apply mt-4 pb-2 border-b border-primary-300/30;
|
|
129
|
+
}
|
|
131
130
|
|
|
132
|
-
.card
|
|
133
|
-
|
|
131
|
+
.card-body {
|
|
132
|
+
@apply relative;
|
|
133
|
+
}
|
|
134
134
|
}
|
|
135
135
|
|
|
136
|
-
.card
|
|
137
|
-
@apply
|
|
136
|
+
.card {
|
|
137
|
+
@apply border-primary-300 rounded-lg shadow-md;
|
|
138
138
|
}
|
|
139
139
|
</style>
|