Skip to content

Commit 4330158

Browse files
authored
Html-justering PageWarning.tsx (#2179)
div -> section
1 parent b1502ac commit 4330158

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/_page-warnings/page-warning/PageWarning.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ type Props = {
1212

1313
export const PageWarning = ({ whiteBg, size = 'small', children }: Props) => {
1414
return (
15-
<div className={classNames(style.container, whiteBg && style.whiteBg)}>
15+
<section className={classNames(style.container, whiteBg && style.whiteBg)}>
1616
<AlertBox variant={'warning'} size={size} className={style.warning}>
1717
{children}
1818
</AlertBox>
19-
</div>
19+
</section>
2020
);
2121
};

0 commit comments

Comments
 (0)