Fixes progress bar layer, snack bar color, listing menu panel width
This commit is contained in:
parent
a346511747
commit
ca16a26f56
|
@ -1 +1 @@
|
|||
{{message}}
|
||||
<span class="snackBar">{{message}}</span>
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
.snackBar {
|
||||
color: white;
|
||||
}
|
|
@ -4,7 +4,8 @@ import { SnackBarNotification } from '../../../core/services/notification/ui-not
|
|||
|
||||
@Component({
|
||||
selector: 'app-snack-bar-notification',
|
||||
templateUrl: './snack-bar-notification.component.html'
|
||||
templateUrl: './snack-bar-notification.component.html',
|
||||
styleUrls: ['./snack-bar-notification.component.scss']
|
||||
})
|
||||
|
||||
export class SnackBarNotificationComponent {
|
||||
|
|
|
@ -108,5 +108,9 @@ p {
|
|||
}
|
||||
|
||||
.role {
|
||||
min-width: 74px;
|
||||
min-width: 74px;
|
||||
}
|
||||
|
||||
::ng-deep .mat-menu-panel {
|
||||
max-width: 282px !important;
|
||||
}
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
margin-right: 30px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
|
@ -29,9 +29,9 @@
|
|||
left: 0;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
z-index: 1;
|
||||
z-index: 4;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
.two-line-mat-option {
|
||||
height: 3.5em;
|
||||
|
@ -39,5 +39,5 @@
|
|||
}
|
||||
.buttonNav:hover {
|
||||
color: aliceblue;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@ $mat-card-header-size: 40px !default;
|
|||
left: 0;
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
z-index: 1;
|
||||
z-index: 4;
|
||||
}
|
||||
|
||||
.fixed-navbar {
|
||||
|
|
Loading…
Reference in New Issue