[Glitch] Change layout of public profile directory to be the same as in web UI

Port 9871904172 to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
This commit is contained in:
Eugen Rochko
2019-08-30 07:41:16 +02:00
committed by Thibaut Girka
parent 7fe2120dd5
commit cd46099e49
2 changed files with 20 additions and 2 deletions

View File

@@ -769,6 +769,24 @@
}
}
.directory__list {
display: grid;
grid-gap: 10px;
grid-template-columns: minmax(0, 50%) minmax(0, 50%);
@media screen and (max-width: $no-gap-breakpoint) {
display: block;
}
.icon-button {
font-size: 18px;
}
}
.directory__card {
margin-bottom: 0;
}
.card-grid {
display: flex;
flex-wrap: wrap;