Skip to content

Commit

Permalink
Fix side scroll by removing left/right margins in sidebar (#465)
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisJordan authored May 26, 2024
1 parent 7d51c2b commit d19f331
Showing 1 changed file with 18 additions and 19 deletions.
37 changes: 18 additions & 19 deletions frontend/src/app/navigation/navigation.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
}

.logo-icon {
display: block;
margin-left: auto;
margin-right: auto;
width: 90%;
}
display: block;
margin-left: auto;
margin-right: auto;
width: 90%;
}

.logo {
margin: 0;
Expand All @@ -39,12 +39,11 @@
}

.bottom-button-container {
width: 100%;
margin-bottom: 6px;
margin-top: auto;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
margin: auto 0 6px 0;
display: flex;
align-items: center;
justify-content: center;
}

.sidenav-container {
Expand All @@ -56,10 +55,10 @@
}

.inner-sidenav-container {
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.sidenav .mat-toolbar {
Expand Down Expand Up @@ -87,10 +86,10 @@
}

.toolbar {
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
}

#gear-icon {
Expand Down

0 comments on commit d19f331

Please sign in to comment.