@mptw/skylens-ui 1.5.15 → 1.5.17

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.
Files changed (63) hide show
  1. package/app/components/SLAlertModal.vue +18 -18
  2. package/app/components/SLButton.vue +108 -148
  3. package/app/components/SLCalendarButton.vue +24 -24
  4. package/app/components/SLCard.vue +44 -44
  5. package/app/components/SLCheckbox.vue +45 -46
  6. package/app/components/SLCircleButton.vue +13 -13
  7. package/app/components/SLCollapsableBlock.vue +15 -15
  8. package/app/components/SLCollapsableMulitPillSelect.vue +9 -9
  9. package/app/components/SLContextMenu.vue +9 -9
  10. package/app/components/SLDateInput.vue +41 -48
  11. package/app/components/SLDownloadButton.vue +12 -12
  12. package/app/components/SLDropdown.vue +21 -21
  13. package/app/components/SLDropdownItem.vue +3 -3
  14. package/app/components/SLElementWithTitle.vue +3 -3
  15. package/app/components/SLEyeCheckbox.vue +36 -36
  16. package/app/components/SLFileInput.vue +16 -16
  17. package/app/components/SLGenderAgeSelect.vue +39 -39
  18. package/app/components/SLHourRangeInput.vue +19 -20
  19. package/app/components/SLIOSSwitch.vue +72 -73
  20. package/app/components/SLIconButton.vue +29 -21
  21. package/app/components/SLInfoTip.vue +35 -36
  22. package/app/components/SLLegend.vue +9 -9
  23. package/app/components/SLLink.vue +3 -3
  24. package/app/components/SLLoading.vue +25 -25
  25. package/app/components/SLModal.vue +79 -79
  26. package/app/components/SLMonthCalendarButton.vue +46 -46
  27. package/app/components/SLMonthPicker.vue +28 -30
  28. package/app/components/SLMultiEmailInput.vue +71 -72
  29. package/app/components/SLMultiSelect.vue +27 -29
  30. package/app/components/SLPageModal.vue +5 -5
  31. package/app/components/SLPagination.vue +31 -31
  32. package/app/components/SLPillCheckbox.vue +42 -42
  33. package/app/components/SLPillLabel.vue +36 -36
  34. package/app/components/SLPopupMenuButton.vue +16 -16
  35. package/app/components/SLProfileButton.vue +17 -17
  36. package/app/components/SLProjectShareItem.vue +17 -17
  37. package/app/components/SLRadioButton.vue +33 -33
  38. package/app/components/SLRadioButtonGroup.vue +6 -6
  39. package/app/components/SLRadioGroup.vue +93 -93
  40. package/app/components/SLRangeInput.vue +17 -19
  41. package/app/components/SLRegionsMapChart.vue +2 -0
  42. package/app/components/SLRightSider.vue +19 -20
  43. package/app/components/SLSearchInput.vue +7 -7
  44. package/app/components/SLSelect.vue +90 -92
  45. package/app/components/SLSelectAllToggle.vue +45 -45
  46. package/app/components/SLSidebarNav.vue +148 -151
  47. package/app/components/SLSidebarNavGroupItemSection.vue +70 -78
  48. package/app/components/SLSidebarNavLinkItem.vue +51 -53
  49. package/app/components/SLSitePage.vue +6 -6
  50. package/app/components/SLSortByDropdown.vue +18 -18
  51. package/app/components/SLStayRangeInput.vue +39 -40
  52. package/app/components/SLTable.vue +56 -59
  53. package/app/components/SLTableTooltip.vue +31 -33
  54. package/app/components/SLTabs.vue +220 -220
  55. package/app/components/SLTextInput.vue +64 -74
  56. package/app/components/SLTextarea.vue +9 -9
  57. package/app/components/SLToast.vue +1 -2
  58. package/app/components/SLToggleButton.vue +12 -12
  59. package/app/components/SLTwoLayerMultiSelect.vue +56 -56
  60. package/app/components/SLTwoLayerSelect.vue +39 -39
  61. package/app/components/SLTwoLayerSingleSelect.vue +21 -21
  62. package/app/components/SLWarnModal.vue +3 -3
  63. 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
- .alert-modal .modal-backdrop {
85
- @apply bg-white/40 backdrop-blur-[5px];
86
- }
83
+ .modal-body-content {
84
+ @apply text-base leading-6 text-pgray-2 text-center space-y-4;
87
85
 
88
- .alert-modal .modal-backdrop.show {
89
- @apply bg-white/40;
90
- }
86
+ .icon {
87
+ @apply text-7p17xl;
88
+ }
91
89
 
92
- .alert-modal .modal-body-content {
93
- @apply text-base leading-6 text-pgray-2 text-center space-y-4;
94
- }
90
+ p {
91
+ @apply whitespace-pre-wrap;
92
+ }
93
+ }
95
94
 
96
- .alert-modal .modal-body-content .icon {
97
- @apply text-7p17xl;
98
- }
95
+ .modal-backdrop {
96
+ @apply bg-white/40 backdrop-blur-[5px];
99
97
 
100
- .alert-modal .modal-body-content p {
101
- @apply whitespace-pre-wrap;
102
- }
98
+ &.show {
99
+ @apply bg-white/40;
100
+ }
101
+ }
103
102
 
104
- .alert-modal .modal-footer {
105
- @apply flex justify-center;
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
- .btn.btn-sm .btn-content {
138
- @apply space-x-1;
139
- }
124
+ &.btn-lg {
125
+ @apply px-7.75;
126
+ }
140
127
 
141
- .btn.btn-xs {
142
- @apply py-0.75 px-1.75 text-xs;
143
- }
128
+ &.btn-md {
129
+ @apply px-3.75;
130
+ }
144
131
 
145
- .btn.btn-xs .btn-content {
146
- @apply space-x-1;
147
- }
132
+ &.btn-sm {
133
+ @apply py-0.75 px-1.75;
134
+ }
148
135
 
149
- .btn.btn-xxs {
150
- @apply p-0.75 text-sm;
151
- }
136
+ &.btn-xs {
137
+ @apply py-0.75 px-1.75 text-xs;
138
+ }
152
139
 
153
- .btn.btn-xxs .btn-content {
154
- @apply space-x-1;
155
- }
140
+ &.btn-xxs {
141
+ @apply p-0.75 text-sm;
142
+ }
156
143
 
157
- .btn.btn-xxs .btn-content .icon.btn-icon {
158
- @apply text-sm leading-none;
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
- .btn-white.btn-outline {
166
- @apply text-pgray-2 hover:text-pgray-2;
167
- }
152
+ &.btn-outline {
153
+ @apply text-pgray-2 hover:text-pgray-2;
154
+ }
168
155
 
169
- .btn-white .btn-loading .loading div {
170
- border-color: white transparent transparent transparent;
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
- .btn-primary.btn-outline {
178
- @apply text-primary hover:text-primary-800;
179
- }
164
+ &.btn-outline {
165
+ @apply text-primary hover:text-primary-800;
166
+ }
180
167
 
181
- .btn-primary .btn-loading .loading div {
182
- border-color: var(--color-primary) transparent transparent transparent;
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
- .btn-primary-600.btn-outline {
190
- @apply text-primary-600 hover:text-primary;
191
- }
176
+ &.btn-outline {
177
+ @apply text-primary-600 hover:text-primary;
178
+ }
192
179
 
193
- .btn-primary-600 .btn-loading .loading div {
194
- border-color: var(--color-primary-600) transparent transparent transparent;
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
- .btn-highlight-500.btn-outline {
202
- @apply text-highlight-500 hover:text-highlight-400;
203
- }
188
+ &.btn-outline {
189
+ @apply text-highlight-500 hover:text-highlight-400;
190
+ }
204
191
 
205
- .btn-highlight-500 .btn-loading .loading div {
206
- border-color: var(--color-highlight-400) transparent transparent transparent;
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
- .btn-third.btn-outline {
214
- @apply text-third hover:text-third-600;
215
- }
200
+ &.btn-outline {
201
+ @apply text-third hover:text-third-600;
202
+ }
216
203
 
217
- .btn-third .btn-loading .loading div {
218
- border-color: var(--color-third-600) transparent transparent transparent;
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
- .btn-danger.btn-outline {
226
- @apply text-danger hover:text-danger-light;
227
- }
212
+ &.btn-outline {
213
+ @apply text-danger hover:text-danger-light;
214
+ }
228
215
 
229
- .btn-danger .btn-loading .loading div {
230
- border-color: var(--color-danger-light) transparent transparent transparent;
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
- .btn-pgray-5.btn-outline {
238
- @apply text-pgray-5 hover:text-pgray-4p5;
239
- }
224
+ &.btn-outline {
225
+ @apply text-pgray-5 hover:text-pgray-4p5;
226
+ }
240
227
 
241
- .btn-pgray-5 .btn-loading .loading div {
242
- border-color: var(--color-pgray-4p5) transparent transparent transparent;
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
- .btn-pgray-2.btn-outline {
250
- @apply text-pgray-2 hover:text-pgray-3;
251
- }
236
+ &.btn-outline {
237
+ @apply text-pgray-2 hover:text-pgray-3;
238
+ }
252
239
 
253
- .btn-pgray-2 .btn-loading .loading div {
254
- border-color: var(--color-pgray-3) transparent transparent transparent;
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
- .btn-secondary.btn-outline {
262
- @apply text-secondary hover:text-secondary-800;
263
- }
248
+ &.btn-outline {
249
+ @apply text-secondary hover:text-secondary-800;
250
+ }
264
251
 
265
- .btn-secondary .btn-loading .loading div {
266
- border-color: var(--color-secondary-500) transparent transparent transparent;
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
- .btn-secondary-200.btn-outline {
274
- @apply text-secondary-200 hover:text-secondary;
275
- }
260
+ &.btn-outline {
261
+ @apply text-secondary-200 hover:text-secondary;
262
+ }
276
263
 
277
- .btn-secondary-200 .btn-loading .loading div {
278
- border-color: var(--color-secondary-500) transparent transparent transparent;
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
- .btn-secondary-600.btn-outline {
286
- @apply text-secondary-600 hover:text-secondary;
287
- }
272
+ &.btn-outline {
273
+ @apply text-secondary-600 hover:text-secondary;
274
+ }
288
275
 
289
- .btn-secondary-600 .btn-loading .loading div {
290
- border-color: var(--color-secondary-500) transparent transparent transparent;
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
- .btn-blue-1.btn-outline {
298
- @apply text-blue-1 hover:text-blue-1;
299
- }
284
+ &.btn-outline {
285
+ @apply text-blue-1 hover:text-blue-1;
286
+ }
300
287
 
301
- .btn-blue-1 .btn-loading .loading div {
302
- border-color: var(--color-blue-1) transparent transparent transparent;
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
- .btn-insight-title-line.btn-outline {
310
- @apply text-insight-title hover:text-insight-title;
311
- }
296
+ &.btn-outline {
297
+ @apply text-insight-title hover:text-insight-title;
298
+ }
312
299
 
313
- .btn-insight-title-line .btn-loading .loading div {
314
- border-color: var(--color-blue-1) transparent transparent transparent;
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
- .btn.loading .btn-content {
338
- @apply opacity-0;
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
- .btn.loading .btn-loading {
342
- @apply block;
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
- .btn-content .icon.btn-icon {
350
- @apply inline-flex text-xs leading-none;
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
- .btn-loading .loading div:nth-child(3) {
374
- animation-delay: -0.15s;
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
- .calendar-button.calendar-button--compact .toggle-button {
251
- @apply h-[37px];
252
- }
249
+ &.calendar-button--compact .toggle-button {
250
+ @apply h-[37px];
251
+ }
253
252
 
254
- .calendar-button .toggle-button {
255
- @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;
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
- .calendar-button .toggle-button .date-range {
259
- @apply flex items-center;
260
- }
256
+ .compare-date-range {
257
+ @apply pl-1 space-x-2 text-sm text-pgray-3;
258
+ }
261
259
 
262
- .calendar-button .toggle-button .date-range .icon {
263
- @apply grow-0 shrink-0 text-base text-primary leading-none;
264
- }
260
+ .date-range {
261
+ @apply flex items-center;
265
262
 
266
- .calendar-button .toggle-button .date-range .divider {
267
- @apply grow-0 shrink-0 block w-px h-4.75 ml-2 mr-1.75 bg-primary;
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
- .calendar-button .toggle-button .date-range .range-days {
271
- @apply block ml-0.5 px-1 py-0.5 bg-primary-50 rounded text-xs text-primary;
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
- .calendar-button .toggle-button .compare-date-range {
275
- @apply pl-1 space-x-2 text-sm text-pgray-3;
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
- .calendar-popup[data-show] {
283
- @apply visible pointer-events-auto;
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
- .tabs .card .card {
77
- @apply border-0 rounded-none shadow-none;
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 .card-prepend {
85
- @apply mb-4;
86
- }
83
+ .card-prepend {
84
+ @apply mb-4;
85
+ }
87
86
 
88
- .card .card-header {
89
- @apply flex justify-between mb-4;
90
- }
87
+ .card-header {
88
+ @apply flex justify-between mb-4;
91
89
 
92
- .card .card-header .card-title {
93
- @apply inline-flex flex-col;
94
- }
90
+ .card-title-container {
91
+ @apply inline-flex items-center mb-2 text-lg text-primary;
95
92
 
96
- .card .card-header .card-title-container {
97
- @apply inline-flex items-center mb-2 text-lg text-primary;
98
- }
93
+ .title-icon {
94
+ @apply ml-2;
95
+ }
96
+ }
99
97
 
100
- .card .card-header .card-title-container .title-icon {
101
- @apply ml-2;
102
- }
98
+ .card-title-container {
99
+ @apply mb-0 text-base text-pgray-2;
100
+ }
103
101
 
104
- .card .card-header .card-title-border {
105
- @apply h-0.5 rounded-full bg-highlight-500;
106
- }
102
+ .card-title-border {
103
+ @apply h-0.5 rounded-full bg-highlight-500;
104
+ }
107
105
 
108
- .card .card-header .card-desc {
109
- @apply text-base text-pgray-2;
110
- }
106
+ .card-title-border {
107
+ @apply hidden;
108
+ }
111
109
 
112
- .card .card-header .card-desc .date-range {
113
- @apply ml-2 text-sm text-pgray-3;
114
- }
110
+ .inline-info {
111
+ @apply mt-2 text-sm text-pgray-3;
112
+ }
115
113
 
116
- .card .card-header .inline-info {
117
- @apply mt-2 text-sm text-pgray-3;
118
- }
114
+ .card-title {
115
+ @apply inline-flex flex-col;
116
+ }
119
117
 
120
- .card .card-body {
121
- @apply relative;
122
- }
118
+ .card-desc {
119
+ @apply text-base text-pgray-2;
123
120
 
124
- .card .card-footer {
125
- @apply mt-4 pb-2 border-b border-primary-300/30;
126
- }
121
+ .date-range {
122
+ @apply ml-2 text-sm text-pgray-3;
123
+ }
124
+ }
125
+ }
127
126
 
128
- .card {
129
- @apply border-primary-300 rounded-lg shadow-md;
130
- }
127
+ .card-footer {
128
+ @apply mt-4 pb-2 border-b border-primary-300/30;
129
+ }
131
130
 
132
- .card .card-header .card-title-container {
133
- @apply mb-0 text-base text-pgray-2;
131
+ .card-body {
132
+ @apply relative;
133
+ }
134
134
  }
135
135
 
136
- .card .card-header .card-title-border {
137
- @apply hidden;
136
+ .card {
137
+ @apply border-primary-300 rounded-lg shadow-md;
138
138
  }
139
139
  </style>