Skip to content

Commit

Permalink
widen container #2
Browse files Browse the repository at this point in the history
Signed-off-by: weru <[email protected]>
  • Loading branch information
onweru committed May 15, 2023
1 parent ec736bf commit e7f32ad
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion assets/sass/_components.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
.container {
position: relative;
width: 100%;
max-width: 1080px;
margin: 0 auto;
--width: 1080px;
max-width: var(--width);
@media screen and (min-width: 1440px) {
--width: 1366px;
}
}

.container--outer {
Expand Down

0 comments on commit e7f32ad

Please sign in to comment.