1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/nest_frontend/routes/PageUsers.module.css

28 lines
324 B
CSS
Raw Normal View History

2021-05-11 17:42:04 +00:00
.PageUsers {
display: grid;
grid-template-areas:
2021-05-12 02:10:36 +00:00
"a"
"b"
"c";
grid-template-rows: auto 1fr auto;
grid-template-columns: 1fr;
2021-05-11 17:42:04 +00:00
grid-gap: 10px;
width: 100%;
height: 100%;
}
.Header {
grid-area: a;
}
2021-05-12 02:10:36 +00:00
.UserList {
2021-05-11 17:42:04 +00:00
grid-area: b;
}
2021-05-11 21:27:42 +00:00
2021-05-12 02:10:36 +00:00
.CreateUser {
2021-05-11 21:27:42 +00:00
grid-area: c;
}