refactor(app): migrate shared styles to tailwind

This commit is contained in:
2026-07-13 15:46:28 +08:00
parent 4682b4bf3f
commit 51462660a4
13 changed files with 145 additions and 289 deletions
@@ -1,30 +0,0 @@
/* ChatScreen 编排层样式(仅 shell 容器 + 背景) */
.shell {
--chat-message-font-size: clamp(16px, 3.333vw, 18px);
--chat-message-line-height: 1.5;
display: flex;
flex-direction: column;
height: var(--app-viewport-height, 100dvh);
background: var(--color-dark-background, #111);
color: var(--color-text-primary, #fff);
position: relative;
overflow: hidden;
}
.background {
position: absolute;
inset: 0;
z-index: 0;
pointer-events: none;
}
.layout {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
flex: 1 1 auto;
min-height: 0;
}