All checks were successful
Quality Check / Linting (push) Successful in 21s
27 lines
374 B
SCSS
27 lines
374 B
SCSS
@use '@angular/material' as mat;
|
|
|
|
.employee-detail {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
|
|
&__info-view {
|
|
display: flex;
|
|
gap: 1rem;
|
|
|
|
>* {
|
|
flex-basis: 0;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
&__base {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
&__action-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
}
|