refactor: replace legacy height utility classes with inline pixel units

Remove the unused height.scss partial and its import from the main SCSS entry file. Update all component templates to use explicit h-[numberpx] classes instead of the legacy h-* height utilities, eliminating the separate dependency file.
This commit is contained in:
duanshuwen
2026-07-25 10:18:12 +08:00
parent 15560574e0
commit 06119f00db
8 changed files with 10 additions and 122 deletions

View File

@@ -1,111 +0,0 @@
.h-screen {
height: 100vh;
}
.h-full {
height: 100%;
}
.h-auto {
height: auto;
}
.h-1 {
height: 1px;
}
.h-8 {
height: 8px;
}
.h-10 {
height: 10px;
}
.h-12 {
height: 12px;
}
.h-16 {
height: 16px;
}
.h-18 {
height: 18px;
}
.h-20 {
height: 20px;
}
.h-24 {
height: 24px;
}
.h-32 {
height: 32px;
}
.h-44 {
height: 44px;
}
.h-42 {
height: 42px;
}
.h-54 {
height: 54px;
}
.h-60 {
height: 60px;
}
.h-64 {
height: 64px;
}
.h72 {
height: 72px;
}
.h-72 {
height: 72px;
}
.h-80 {
height: 80px;
}
.h-82 {
height: 82px;
}
.h-96 {
height: 96px;
}
.h-108 {
height: 108px;
}
.h-154 {
height: 154px;
}
.h-164 {
height: 164px;
}
.h-170 {
height: 170px;
}
.h-178 {
height: 178px;
}
.h-260 {
height: 260px;
}

View File

@@ -1,6 +1,5 @@
@import "./background.scss";
@import "./border.scss";
@import "./height.scss";
@import "./font-family.scss";
@import "./overflow.scss";
@import "./scroll.scss";