28 lines
374 B
SCSS
28 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;
|
||
|
}
|
||
|
}
|