25 lines
515 B
SCSS
25 lines
515 B
SCSS
.employee-webapp {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: grid;
|
|
grid-template-columns: auto minmax(0, 1fr); // column relationship
|
|
grid-template-rows: auto minmax(1px, 1fr); // auto auto auto auto auto auto auto auto auto; // row relationships
|
|
// grid-template-areas: "label""toolbar""grid";
|
|
grid-template-areas: "label label" "toolbar grid";
|
|
}
|
|
|
|
.grid {
|
|
grid-area: grid;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.label {
|
|
grid-area: label;
|
|
// padding-bottom: 6px;
|
|
}
|
|
|
|
.toolbar {
|
|
grid-area: toolbar;
|
|
}
|