mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 13:04:19 +00:00
27 lines
324 B
CSS
27 lines
324 B
CSS
.PageShare {
|
|
display: grid;
|
|
|
|
grid-template-areas:
|
|
"a"
|
|
"b"
|
|
"c";
|
|
grid-template-rows: auto 1fr 1fr;
|
|
grid-template-columns: 1fr;
|
|
grid-gap: 10px;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
|
|
.Header {
|
|
grid-area: a;
|
|
}
|
|
|
|
.UserList {
|
|
grid-area: b;
|
|
}
|
|
|
|
.SharingWith {
|
|
grid-area: c;
|
|
}
|