23 lines
363 B
CSS
23 lines
363 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
--background: #f5f5f5;
|
|
--foreground: #171717;
|
|
}
|
|
|
|
body {
|
|
color: var(--foreground);
|
|
background: var(--background);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
/* 确保在所有设备上保持移动端的体验 */
|
|
html, body {
|
|
overflow-x: hidden;
|
|
width: 100%;
|
|
}
|