@auronui/styles 1.2.1 → 1.2.2
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/components/modal.css +4 -12
- package/package.json +1 -1
package/components/modal.css
CHANGED
|
@@ -271,7 +271,7 @@
|
|
|
271
271
|
* Element: header - the top section with the title
|
|
272
272
|
*/
|
|
273
273
|
.modal__header {
|
|
274
|
-
@apply flex flex-col gap-3 mb-0
|
|
274
|
+
@apply flex flex-col gap-3 mb-0 p-5 pb-2;
|
|
275
275
|
|
|
276
276
|
/* When header contains icon, use flex-col layout with gap */
|
|
277
277
|
& > .modal__icon {
|
|
@@ -300,7 +300,7 @@
|
|
|
300
300
|
* Element: body - the main content area
|
|
301
301
|
*/
|
|
302
302
|
.modal__body {
|
|
303
|
-
@apply min-h-0 flex-1 text-sm leading-[1.43] text-muted my-0 p-5
|
|
303
|
+
@apply min-h-0 flex-1 text-sm leading-[1.43] text-muted my-0 p-5;
|
|
304
304
|
}
|
|
305
305
|
|
|
306
306
|
/**
|
|
@@ -322,7 +322,7 @@
|
|
|
322
322
|
* Element: footer - the bottom action section
|
|
323
323
|
*/
|
|
324
324
|
.modal__footer {
|
|
325
|
-
@apply flex flex-row items-center justify-end gap-2;
|
|
325
|
+
@apply flex flex-row items-center justify-end gap-2 p-3;
|
|
326
326
|
@apply mt-0;
|
|
327
327
|
}
|
|
328
328
|
|
|
@@ -337,13 +337,5 @@
|
|
|
337
337
|
* Elements Spacing
|
|
338
338
|
*/
|
|
339
339
|
.modal__header + .modal__body {
|
|
340
|
-
@apply
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
.modal__header + .modal__footer {
|
|
344
|
-
@apply mt-5;
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
.modal__body + .modal__footer {
|
|
348
|
-
@apply mt-5;
|
|
340
|
+
@apply pt-3;
|
|
349
341
|
}
|