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/PageRepository.module.css

25 lines
No EOL
343 B
CSS

.PageRepository {
display: grid;
grid-template-areas:
"a b"
"c d"
"e f"
"g h"
;
grid-gap: 10px;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr auto 1fr auto;
width: 100%;
height: 100%;
}
.Tweets {
grid-area: a;
}
.Wordcloud {
grid-area: b;
}