feat: add tags support (#542)

* feat: basic tags support

* feat: add term page

* chore: update css
This commit is contained in:
Xin
2025-01-05 20:33:56 +00:00
committed by GitHub
parent 876eb3abff
commit 709a407b2e
4 changed files with 85 additions and 1 deletions

View File

@ -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;