Skip to content

Commit 42c12fa

Browse files
committed
refactor(Container): replace hardcoded max-width with Tailwind utility
1 parent ae03773 commit 42c12fa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Container/Container.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default function Container(props = {}) {
66
const { className = "" } = props;
77

88
return (
9-
<div className={`w-full max-w-[1024px] mx-auto ${className}`}>
9+
<div className={`w-full max-w-screen-lg mx-auto ${className}`}>
1010
{props.children}
1111
</div>
1212
);

0 commit comments

Comments
 (0)