fix: properly handle tabs overflow (#422)
Some checks failed
Deploy Hugo site to Pages / build (push) Has been cancelled
Deploy Hugo site to Pages / deploy (push) Has been cancelled

* fix: properly handle tabs overflow

* chore: rebuild css
This commit is contained in:
Xin
2024-07-10 01:11:51 +01:00
committed by GitHub
parent 56f6f19978
commit e3b582676e
5 changed files with 30 additions and 21 deletions

View File

@ -914,9 +914,15 @@ video {
.hx-overflow-x-hidden {
overflow-x: hidden;
}
.hx-overflow-y-hidden {
overflow-y: hidden;
}
.hx-overscroll-contain {
overscroll-behavior: contain;
}
.hx-overscroll-x-contain {
overscroll-behavior-x: contain;
}
.hx-text-ellipsis {
text-overflow: ellipsis;
}