@muraldevkit/ui-toolkit 1.21.9 → 1.21.11
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/dist/components/button/MrlAnimatedIconButton/MrlAnimatedIconButton.d.ts +1 -1
- package/dist/components/button/MrlButton/MrlButton.d.ts +1 -1
- package/dist/components/button/MrlIconButton/MrlIconButton.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/styles/MrlBlockNotification/module.scss +13 -6
- package/package.json +1 -1
|
@@ -50,10 +50,20 @@ $mrl-notification-close-inset: var(--mrl-spacing-02);
|
|
|
50
50
|
align-items: center;
|
|
51
51
|
display: flex;
|
|
52
52
|
|
|
53
|
+
h2,
|
|
53
54
|
p {
|
|
54
|
-
|
|
55
|
+
display: contents;
|
|
56
|
+
}
|
|
55
57
|
|
|
56
|
-
|
|
58
|
+
h2::after {
|
|
59
|
+
// Adds a space after the header. display: contents allows text to flow naturally but you cannot apply margin or padding
|
|
60
|
+
// that would normally be needed on the element. So this will ensure proper spacing for the text after the header.
|
|
61
|
+
content: '\00a0';
|
|
62
|
+
display: contents;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
p {
|
|
66
|
+
@include mrl-text-static('small');
|
|
57
67
|
}
|
|
58
68
|
}
|
|
59
69
|
|
|
@@ -70,9 +80,6 @@ $mrl-notification-close-inset: var(--mrl-spacing-02);
|
|
|
70
80
|
* which is a breaking change. Also we could explore if we need this div at all?
|
|
71
81
|
**/
|
|
72
82
|
.mrl-blockNotification-icon {
|
|
83
|
+
display: flex;
|
|
73
84
|
min-width: fit-content;
|
|
74
|
-
|
|
75
|
-
> svg {
|
|
76
|
-
display: flex;
|
|
77
|
-
}
|
|
78
85
|
}
|