fc52afda99
添加项目基础文件结构,包括: - 国际化多语言支持 - Tailwind CSS配置 - 自定义布局组件 - 平滑滚动和动画效果 - 自定义光标交互 - 错误页面处理
15 lines
171 B
CSS
15 lines
171 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
:root {
|
|
--page-container--width: 1400px;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
background: #fff;
|
|
}
|
|
}
|