Fixed logout button. Fixed menu displacement

This commit is contained in:
twanariens 2020-05-29 13:56:24 +02:00
commit 89865044ec
4 changed files with 10 additions and 2 deletions

View file

@ -9,7 +9,7 @@
 {{nav.name | translate}}  {{nav.name | translate}}
</a> </span> </a> </span>
<a class="bottom-nav-link" mat-list-item <a id="bottom-nav-link" mat-list-item
[routerLinkActive]="getTheme()" aria-label="Toggle sidenav" [routerLinkActive]="getTheme()" aria-label="Toggle sidenav"
(click)="logOut();"> (click)="logOut();">
<mat-icon aria-label="Side nav toggle icon">exit_to_app</mat-icon> <mat-icon aria-label="Side nav toggle icon">exit_to_app</mat-icon>

View file

@ -61,7 +61,7 @@
}*/ }*/
// changed bottom to 10px so when you overlay a link it won't get blocked by URL // changed bottom to 10px so when you overlay a link it won't get blocked by URL
.bottom-nav-link { #bottom-nav-link {
bottom: 10px; bottom: 10px;
position: absolute !important; position: absolute !important;
//background-color:#E84C3D; //background-color:#E84C3D;

View file

@ -30,3 +30,7 @@ $ombi-accent: #258a6d;
.search-bar:focus { .search-bar:focus {
background-color: white; background-color: white;
} }
::ng-deep .mat-form-field-underline{
bottom:0.5em;
}

View file

@ -101,3 +101,7 @@ table {
color:#fff; color:#fff;
border: 1px solid rgba(0, 0, 0, 0.18); border: 1px solid rgba(0, 0, 0, 0.18);
} }
::ng-deep .mat-toolbar.mat-primary{
margin-bottom: 0.5em;
}