displaying members

This commit is contained in:
Alexandre Bourlier
2018-03-18 20:42:34 +01:00
parent 4359bdfb35
commit 420c68bd6e
4 changed files with 43 additions and 13 deletions

View File

@ -1,8 +1,35 @@
#profilesList {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
max-width: fit-content;
ldp-display {
img {
display: block;
}
&, img {
width: 100%;
max-width: 320px;
min-width: 100%;
}
div[name="name"],
div[name="location"] {
display: flex;
}
}
}
@media (min-width: 576px) {
#profilesList {
display: flex;
justify-content: space-between;
ldp-display {
&, img {
width: 250px;
max-width: initial;
min-width: initial;
}
}
}
}
.miniature {