Moved Themer to Settings. Added option to set default theme

This commit is contained in:
Paweł Malak
2021-11-18 13:47:27 +01:00
parent 426766225b
commit e2285e2deb
20 changed files with 156 additions and 54 deletions

View File

@@ -0,0 +1,18 @@
.ThemerGrid {
width: 100%;
display: grid;
grid-template-columns: 1fr;
grid-auto-rows: 100px;
}
@media (min-width: 340px) {
.ThemerGrid {
grid-template-columns: 1fr 1fr;
}
}
@media (min-width: 680px) {
.ThemerGrid {
grid-template-columns: 1fr 1fr 1fr;
}
}