72 lines
1.5 KiB
SCSS
72 lines
1.5 KiB
SCSS
.dashboard-container {
|
|
padding: 24px;
|
|
|
|
.quick-actions {
|
|
display: flex;
|
|
justify-content: end;
|
|
|
|
button {
|
|
margin-bottom: 16px;
|
|
}
|
|
}
|
|
|
|
.table-actions {
|
|
display: flex;
|
|
justify-content: end;
|
|
|
|
button {
|
|
margin-bottom: 16px;
|
|
}
|
|
}
|
|
|
|
.table-container {
|
|
position: relative;
|
|
overflow: auto;
|
|
border-radius: 8px;
|
|
|
|
.loading-shade {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(255, 255, 255, 0.7);
|
|
z-index: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
mat-table {
|
|
width: 100%;
|
|
|
|
mat-icon {
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
|
|
&:hover {
|
|
transform: scale(1.1);
|
|
}
|
|
}
|
|
}
|
|
|
|
.no-data-message {
|
|
text-align: center;
|
|
padding: 0.9rem;
|
|
color: rgba(0, 0, 0, 0.54);
|
|
|
|
mat-icon {
|
|
font-size: 1rem;
|
|
width: 1rem;
|
|
height: 1rem;
|
|
margin-bottom: -3px;
|
|
}
|
|
}
|
|
|
|
mat-paginator {
|
|
border-top: 1px solid rgba(0, 0, 0, 0.12);
|
|
border-radius: 0 0 8px 8px;
|
|
padding-top: 4px;
|
|
}
|
|
}
|
|
} |