remove important and legacy css

This commit is contained in:
Gauthier Roebroeck 2026-03-17 11:58:26 +08:00
parent 24699848eb
commit cba6fa361e
2 changed files with 4 additions and 8 deletions

View file

@ -21,7 +21,7 @@ export default {
@import '../src/styles/global.scss';
.v-application__wrap {
min-height: unset !important;
height: auto !important;
min-height: unset;
height: auto;
}
</style>

View file

@ -1,7 +1,3 @@
html {
overflow-y: auto !important;
}
.link-none {
text-decoration: none;
}
@ -19,9 +15,9 @@ html {
// --lines: the number of lines to display
// --line-height: the line height
.force-line-count {
display: -webkit-box !important;
display: -webkit-box;
-webkit-line-clamp: var(--lines, 2);
-webkit-box-orient: vertical;
overflow: hidden !important;
overflow: hidden;
height: calc(var(--line-height) * var(--lines, 1) * 1rem);
}