Skip to content

Commit

Permalink
Fix footer covers elements of side menu
Browse files Browse the repository at this point in the history
The commit fixes an issue where the footer was covering elements of the side menu. The changes include commenting out the left, bottom, and position properties in the .stick-down class in footer.component.scss file. Additionally, in full-layout.component.scss file, the :host::ng-deep.mat-drawer-inner-container selector has been modified to display flex with a column direction and space-between justification.
  • Loading branch information
sanioooook committed Sep 19, 2023
1 parent 4ff58f1 commit c4172f4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eform-client/src/app/components/footer/footer.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ span {
}

.stick-down {
left: 0;
bottom: 0;
//left: 0;
//bottom: 0;
width: 100%;
position: absolute;
//position: absolute;
}

.footer-version {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@
}
}

:host::ng-deep.mat-drawer-inner-container {
display: flex;
flex-direction: column;
justify-content: space-between;
}

#sign-out-dropdown {
//top: -4px;
}

0 comments on commit c4172f4

Please sign in to comment.