Skip to content

Commit

Permalink
fix: sidebar overwrapping error for fixed position (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
lumirlumir authored Sep 11, 2024
1 parent 4e21cc6 commit 1a22326
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/layouts/Aside/Aside.module.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
.aside {
position: fixed;
position: sticky;
top: 0;
left: 0;
grid-area: 1 / 1 / 3 / 2;
width: 300px;
height: 100vh;
overflow-y: scroll;
background-color: inherit;
}

0 comments on commit 1a22326

Please sign in to comment.