Feature: add "recently visited themes" on index page

This commit is contained in:
Pieter Vander Vennet 2025-02-16 00:04:48 +01:00
parent 1723f268c0
commit 4db2c86c0f
5 changed files with 47 additions and 21 deletions

View file

@ -1140,10 +1140,6 @@ input[type="range"].range-lg::-moz-range-thumb {
position: absolute;
}
.\!relative {
position: relative !important;
}
.relative {
position: relative;
}
@ -2565,6 +2561,10 @@ input[type="range"].range-lg::-moz-range-thumb {
grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid-rows-2 {
grid-template-rows: repeat(2, minmax(0, 1fr));
}
.flex-row {
flex-direction: row;
}
@ -8729,6 +8729,10 @@ svg.apply-fill path {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.md\:grid-rows-1 {
grid-template-rows: repeat(1, minmax(0, 1fr));
}
.md\:flex-row {
flex-direction: row;
}