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/code/frontend/src/components/providers/RepositoryEditor.module.css

42 lines
512 B
CSS
Raw Normal View History

.RepositoryEditor {
display: grid;
grid-template-areas:
"b c"
"b d"
"b e"
"b f"
2021-05-11 14:37:15 +00:00
"b g";
grid-template-columns: 400px 1fr;
grid-template-rows: auto auto auto 1fr auto;
grid-gap: 10px;
width: 100%;
height: 100%;
}
.SearchByZone {
grid-area: b;
}
.SearchByHashtags {
grid-area: c;
}
.SearchByUser {
grid-area: d;
}
.SearchByTimePeriod {
grid-area: e;
}
.Conditions {
grid-area: f;
}
.CreateDialog {
grid-area: g;
}