style: fix invalid color refs and standardize hex

Fix invalid SCSS variable syntax in the NoticeMessage component by replacing invalid $text-[#xxx] references with direct hex codes. Replace SCSS color variable usages with hardcoded hex values across multiple UI components. Standardize hex color values to lowercase in the global SCSS file, and fix the trailing newline in src/uni.scss.
This commit is contained in:
duanshuwen
2026-07-24 22:37:33 +08:00
parent 4af4255610
commit 1df4b328dd
4 changed files with 27 additions and 27 deletions

View File

@@ -105,13 +105,13 @@ const clickItem = (item) => {
}
.text-color {
color: $text-[#0B5C2D];
color: #0B5C2D;
}
.underline-text {
text-decoration: underline;
text-decoration-color: $text-[#35F37F];
color: $text-color-400;
text-decoration-color: #35F37F;
color: #99A0AE;
}
.noMessage {
@@ -129,7 +129,7 @@ const clickItem = (item) => {
}
.noMessage-text {
color: $text-[#0B5C2D];
color: #0B5C2D;
line-height: 16px;
white-space: normal;
overflow-wrap: break-word;