Skip to content

Commit 5cfd3ac

Browse files
committed
return the bottom margin to the TextBox component
1 parent d99f3a9 commit 5cfd3ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/TextBox/TextBox.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const TextBox = ({ addClass, alignment, size, style, text }) => {
1212
{paragraphs.map((par, index) => (
1313
<div className={`text-box--${alignment} ${addClass || ''}`} key={index}>
1414
<p
15-
className={`text-box text-box--${size} mb-0`}
15+
className={`text-box text-box--${size}`}
1616
style={{ ...style }}
1717
>
1818
{par}

0 commit comments

Comments
 (0)