Skip to content

Commit

Permalink
fix: mobile layout
Browse files Browse the repository at this point in the history
  • Loading branch information
jonassimoen committed Dec 3, 2023
1 parent f70f7ac commit d0bb8e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/UI/Layout/LayoutStyle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const LayoutStyle = styled(Layout)`
background: transparent;
margin: 0 auto;
width: 100%;
@media (min-width: 992px) {
@media ${mediaQueries.laptop} {
width: 80%;
}
Expand Down
2 changes: 1 addition & 1 deletion src/styles/media-queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const sizes = {
mobileL: 425,
tablet: 768,
tabletL: 846,
laptop: 1024,
laptop: 1100,
desktop: 1200,
desktopL: 1500
};
Expand Down

0 comments on commit d0bb8e4

Please sign in to comment.