@indico-data/design-system 2.47.1 → 2.47.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/lib/index.css
CHANGED
|
@@ -1889,17 +1889,6 @@ form {
|
|
|
1889
1889
|
.modal .modal-content .modal-body h2 {
|
|
1890
1890
|
font-size: var(--pf-font-size-h1);
|
|
1891
1891
|
}
|
|
1892
|
-
.modal .modal-content .modal-body h1,
|
|
1893
|
-
.modal .modal-content .modal-body h2,
|
|
1894
|
-
.modal .modal-content .modal-body h3,
|
|
1895
|
-
.modal .modal-content .modal-body h4,
|
|
1896
|
-
.modal .modal-content .modal-body h5,
|
|
1897
|
-
.modal .modal-content .modal-body h6 {
|
|
1898
|
-
margin-bottom: var(--pf-margin-4);
|
|
1899
|
-
}
|
|
1900
|
-
.modal .modal-content .modal-body p {
|
|
1901
|
-
margin-bottom: var(--pf-margin-4);
|
|
1902
|
-
}
|
|
1903
1892
|
.modal .modal-content .modal-body hr {
|
|
1904
1893
|
margin-top: var(--pf-margin-8);
|
|
1905
1894
|
margin-bottom: var(--pf-margin-8);
|
package/lib/index.esm.css
CHANGED
|
@@ -1889,17 +1889,6 @@ form {
|
|
|
1889
1889
|
.modal .modal-content .modal-body h2 {
|
|
1890
1890
|
font-size: var(--pf-font-size-h1);
|
|
1891
1891
|
}
|
|
1892
|
-
.modal .modal-content .modal-body h1,
|
|
1893
|
-
.modal .modal-content .modal-body h2,
|
|
1894
|
-
.modal .modal-content .modal-body h3,
|
|
1895
|
-
.modal .modal-content .modal-body h4,
|
|
1896
|
-
.modal .modal-content .modal-body h5,
|
|
1897
|
-
.modal .modal-content .modal-body h6 {
|
|
1898
|
-
margin-bottom: var(--pf-margin-4);
|
|
1899
|
-
}
|
|
1900
|
-
.modal .modal-content .modal-body p {
|
|
1901
|
-
margin-bottom: var(--pf-margin-4);
|
|
1902
|
-
}
|
|
1903
1892
|
.modal .modal-content .modal-body hr {
|
|
1904
1893
|
margin-top: var(--pf-margin-8);
|
|
1905
1894
|
margin-bottom: var(--pf-margin-8);
|
package/package.json
CHANGED
|
@@ -183,8 +183,8 @@ export const Default: Story = {
|
|
|
183
183
|
<Row>
|
|
184
184
|
<Col sm={4}>
|
|
185
185
|
<Modal {...args} isOpen={isOpen} onRequestClose={handleClose}>
|
|
186
|
-
<h2>The Legend of Zelda</h2>
|
|
187
|
-
<p>
|
|
186
|
+
<h2 className="mb-4">The Legend of Zelda</h2>
|
|
187
|
+
<p className="mb-4">
|
|
188
188
|
In the mystical realm of Hyrule, where ancient magic flows through verdant fields
|
|
189
189
|
and towering mountains, a timeless tale unfolds across countless generations. The
|
|
190
190
|
legendary hero Link, eternally reborn when darkness threatens the land, stands as
|
|
@@ -192,7 +192,7 @@ export const Default: Story = {
|
|
|
192
192
|
Through the ages, he has faced the malevolent forces of Ganon, whose insatiable
|
|
193
193
|
desire for power has brought destruction and chaos to this peaceful kingdom.
|
|
194
194
|
</p>
|
|
195
|
-
<p>
|
|
195
|
+
<p className="mb-4">
|
|
196
196
|
Princess Zelda, blessed with the wisdom of the goddesses and keeper of the royal
|
|
197
197
|
bloodline, serves as both ruler and guardian of Hyrule's most sacred treasures.
|
|
198
198
|
Together with Link, she maintains the delicate balance between light and shadow,
|
|
@@ -244,8 +244,8 @@ export const ConfirmationModal: Story = {
|
|
|
244
244
|
<Row>
|
|
245
245
|
<Col sm={4}>
|
|
246
246
|
<Modal {...args} isOpen={isOpen} onRequestClose={handleClose}>
|
|
247
|
-
<h2>Would you like to continue?</h2>
|
|
248
|
-
<p>
|
|
247
|
+
<h2 className="mb-4">Would you like to continue?</h2>
|
|
248
|
+
<p className="mb-4">
|
|
249
249
|
If you would like to proceed, please click the confirm button. Otherwise, click the
|
|
250
250
|
cancel button.
|
|
251
251
|
</p>
|
|
@@ -72,19 +72,6 @@
|
|
|
72
72
|
font-size: var(--pf-font-size-h1);
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
-
h1,
|
|
76
|
-
h2,
|
|
77
|
-
h3,
|
|
78
|
-
h4,
|
|
79
|
-
h5,
|
|
80
|
-
h6 {
|
|
81
|
-
margin-bottom: var(--pf-margin-4);
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
p {
|
|
85
|
-
margin-bottom: var(--pf-margin-4);
|
|
86
|
-
}
|
|
87
|
-
|
|
88
75
|
// We should build a divider component for this
|
|
89
76
|
hr {
|
|
90
77
|
margin-top: var(--pf-margin-8);
|