Skip to content

Commit

Permalink
Fix layouts.css
Browse files Browse the repository at this point in the history
  • Loading branch information
lazaronixon committed Jan 7, 2025
1 parent 114acfb commit 92b8877
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## [Unreleased]
- Fix layouts.css

## [0.0.81] - 2024-01-07
- Improve carousel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@

@media (width >= 48rem) {
--sidebar-border-width: var(--border);
--sidebar-padding: var(--size-2);
--sidebar-width: 220px;
}

@media (width >= 64rem) {
--sidebar-border-width: var(--border);
--sidebar-padding: var(--size-2);
--sidebar-width: 280px;
}
}
Expand Down Expand Up @@ -54,7 +56,7 @@
grid-area: sidebar;
gap: var(--size-2);
overflow-x: hidden;
padding: var(--size-2);
padding: var(--sidebar-padding, 0);
}

#main {
Expand Down

0 comments on commit 92b8877

Please sign in to comment.