20 lines
405 B
SCSS
20 lines
405 B
SCSS
.department-documentart {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr); // column relationship
|
|
grid-template-rows: 0 minmax(1px, 1fr); // auto auto auto auto auto auto auto auto auto; // row relationships
|
|
grid-template-areas: "label" "attributes";
|
|
}
|
|
|
|
|
|
.documentart {
|
|
grid-area: attributes;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.label {
|
|
grid-area: label;
|
|
}
|