c9cf644ac5
- 添加 build-and-push.sh 脚本用于自动化构建和推送 Docker 镜像 - 更新 .dockerignore 排除 pnpm-workspace.yaml - 更新项目依赖和配置文件
38 lines
643 B
CSS
Executable File
38 lines
643 B
CSS
Executable File
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
:root {
|
|
--page-container--width: 1400px;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
max-width: 100%;
|
|
overflow-x: clip;
|
|
background: #fff;
|
|
}
|
|
|
|
html {
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
html::-webkit-scrollbar {
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
html.is-scroll-locked,
|
|
html.is-scroll-locked body {
|
|
overflow: hidden !important;
|
|
}
|
|
|
|
/* 首页入场动画期间首帧就隐藏滚动条,避免黑色遮罩边缘露出白色滚动槽。 */
|
|
html.is-home-intro-active,
|
|
html.is-home-intro-active body {
|
|
overflow: hidden !important;
|
|
background: #000;
|
|
}
|
|
}
|