28 lines
381 B
SCSS
28 lines
381 B
SCSS
|
.notification-listing {
|
||
|
margin-top: 1.3rem;
|
||
|
margin-left: 1rem;
|
||
|
margin-right: 2rem;
|
||
|
|
||
|
.mat-header-row{
|
||
|
background: #f3f5f8;
|
||
|
}
|
||
|
.mat-card {
|
||
|
margin: 16px 0;
|
||
|
padding: 0px;
|
||
|
}
|
||
|
|
||
|
.mat-row {
|
||
|
cursor: pointer;
|
||
|
min-height: 4.5em;
|
||
|
}
|
||
|
|
||
|
mat-row:hover {
|
||
|
background-color: #eef5f6;
|
||
|
}
|
||
|
.mat-fab-bottom-right {
|
||
|
float: right;
|
||
|
z-index: 5;
|
||
|
}
|
||
|
}
|
||
|
|