mirror of
https://github.com/imfing/hextra.git
synced 2025-06-19 19:01:19 -04:00
feat: add tags support (#542)
* feat: basic tags support * feat: add term page * chore: update css
This commit is contained in:
@ -839,6 +839,9 @@ video {
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
}
|
||||
.hx-grid-cols-1 {
|
||||
grid-template-columns: repeat(1, minmax(0, 1fr));
|
||||
}
|
||||
.hx-flex-col {
|
||||
flex-direction: column;
|
||||
}
|
||||
@ -3427,6 +3430,10 @@ body:is(html[class~="dark"] *) {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.md\:hx-grid-cols-2 {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.md\:hx-justify-start {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
@ -3456,11 +3463,21 @@ body:is(html[class~="dark"] *) {
|
||||
font-size: .875rem;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1024px) {
|
||||
|
||||
.lg\:hx-grid-cols-3 {
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
@media (min-width: 1280px) {
|
||||
|
||||
.xl\:hx-block {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.xl\:hx-grid-cols-4 {
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
.ltr\:hx-right-1\.5:where([dir="ltr"], [dir="ltr"] *) {
|
||||
right: 0.375rem;
|
||||
|
Reference in New Issue
Block a user