grid
This commit is contained in:
parent
ef6b2a98e7
commit
9d8a81ebc8
2 changed files with 18 additions and 0 deletions
|
@ -245,6 +245,14 @@ nav ul li.active {
|
||||||
width: 32px;
|
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 {
|
#fs {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
@ -1,3 +1,13 @@
|
||||||
#library {
|
#library {
|
||||||
.component;
|
.component;
|
||||||
|
|
||||||
|
.tiles {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
||||||
|
|
||||||
|
li {
|
||||||
|
border: 3px solid lime;
|
||||||
|
height: 200px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue