-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Spacing and sizing layout tweaks
- Loading branch information
1 parent
57d1c15
commit 1f626d3
Showing
4 changed files
with
15 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
.layout { | ||
min-height: 100vh; | ||
display: grid; | ||
grid-template-rows: auto 1fr auto; | ||
} | ||
|
||
.main { | ||
display: grid; | ||
grid-template-columns: auto minmax(0, 1fr); | ||
grid-gap: 1rem; | ||
max-width: 1200px; | ||
max-width: 1460px; | ||
margin: 0 auto; | ||
} | ||
|
||
.content { | ||
padding: 2rem; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.sidebar { | ||
padding: 2rem 0; | ||
padding: 2rem; | ||
border-right: 1px solid var(--color-neutrals-100); | ||
|
||
ul { | ||
|