fake_shop/app/globals.css

23 lines
363 B
CSS
Raw Permalink Normal View History

2025-02-07 18:04:25 +08:00
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
2025-02-10 19:24:19 +08:00
--background: #f5f5f5;
2025-02-07 18:04:25 +08:00
--foreground: #171717;
}
body {
color: var(--foreground);
background: var(--background);
2025-03-13 20:12:57 +08:00
min-height: 100vh;
display: flex;
flex-direction: column;
}
/* 确保在所有设备上保持移动端的体验 */
html, body {
overflow-x: hidden;
width: 100%;
2025-02-07 18:04:25 +08:00
}