Skip to content

Commit

Permalink
ui(layout): wider layout with container-xl
Browse files Browse the repository at this point in the history
  • Loading branch information
theborakompanioni committed Dec 19, 2023
1 parent ceb6d9b commit 9de95c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default function App() {
element={
<>
<Navbar />
<rb.Container as="main" className="py-4 py-sm-5" fluid>
<rb.Container as="main" className="py-4 py-lg-5" fluid="xl">
<Outlet />
</rb.Container>
<Footer />
Expand Down
2 changes: 1 addition & 1 deletion src/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const Col = ({ variant, children }: PropsWithChildren<ColProps>) => {
}

return (
<rb.Col md={12} lg={10} xl={8} xxl={6}>
<rb.Col lg={10} xl={10} xxl={8}>
{children}
</rb.Col>
)
Expand Down

0 comments on commit 9de95c1

Please sign in to comment.