refactor: comment out unused CSS imports and styles

- Commented out the import of color.css in index.css.
- Commented out the universal selector in tailwind.css to prevent unintended styling, with a note for future removal after migration.
This commit is contained in:
MyPrototypeWhat 2025-11-03 11:30:58 +08:00
parent 14706ec4d7
commit f9b7ff7d0e
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
@import './color.css';
/* @import './color.css'; */
@import './font.css';
@import './markdown.css';
@import './scrollbar.css';

View File

@ -60,13 +60,13 @@
}
@layer base {
* {
/* * {
@apply border-border outline-ring/50;
}
body {
@apply bg-background text-foreground;
}
} */
/* TODO: 迁移完成后删除 */
/* To disable drag title bar on toast. tailwind css doesn't provide such class name. */
.hero-toast {
-webkit-app-region: no-drag;