chore: remove unused SCSS and fix component styles

- remove unused z-index and word-break SCSS utility files and their imports from src/static/scss/index.scss
- standardize padding unit notation to [px] format in ChatQuickAccess component
- reformat long class attributes and clean up whitespace in GeneratorPhotoComponent
- fix trailing whitespace and formatting for the navigateTo call in GeneratorPhotoComponent
This commit is contained in:
duanshuwen
2026-07-24 15:36:06 +08:00
parent 4a30777ee0
commit d3d15b1a19
5 changed files with 7 additions and 26 deletions

View File

@@ -17,10 +17,8 @@
@import "./overflow.scss";
@import "./scroll.scss";
@import "./width.scss";
@import "./z-index.scss";
@import "./white-space.scss";
@import "./box-sizing.scss";
@import "./word-break.scss";
@import "./min-height.scss";
@import "./min-width.scss";
@import "./gap.scss";

View File

@@ -1,3 +0,0 @@
.break-all {
word-break: break-all;
}

View File

@@ -1,15 +0,0 @@
.z-0 {
z-index: 0;
}
.z-10 {
z-index: 10;
}
.z-20 {
z-index: 20;
}
.z-30 {
z-index: 30;
}