Files
arcticnewone/app/assets/css/tailwind.css
T
virtheart b71ab1a342 feat(tools): 添加工具箱页面及国际化支持
添加新的工具箱页面,包含三个实用工具卡片。更新国际化文件支持多语言显示。优化页面滚动锁定功能,使其可配置自定义类名。调整导航栏菜单项显示逻辑。

工具箱页面包含入场动画效果,并添加SEO元信息。滚动锁定功能现在支持自定义类名,便于不同场景使用。导航栏现在动态显示中间菜单项,排除最后一项。
2026-04-28 14:32:57 +08:00

38 lines
643 B
CSS

@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;
}
}