This commit is contained in:
Ondrej Zara 2019-03-29 23:36:06 +01:00
parent ef6b2a98e7
commit 9d8a81ebc8
2 changed files with 18 additions and 0 deletions

View file

@ -245,6 +245,14 @@ nav ul li.active {
width: 32px;
}
}
#library .tiles {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
#library .tiles li {
border: 3px solid lime;
height: 200px;
}
#fs {
height: 100%;
display: flex;

View file

@ -1,3 +1,13 @@
#library {
.component;
.tiles {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
li {
border: 3px solid lime;
height: 200px;
}
}
}