You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
535 B
19 lines
535 B
@import "tailwindcss";
|
|
|
|
/* 可选:引入 Arco 主题变量覆盖、全局重置等 */
|
|
@import "./assets/styles/reset.scss";
|
|
@import "./assets/iconfont/iconfont.css";
|
|
|
|
/* 首页专用:挂在 html/body 的类,用于隐藏视口滚动条 */
|
|
html.index-landing-no-scrollbar,
|
|
body.index-landing-no-scrollbar {
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
html.index-landing-no-scrollbar::-webkit-scrollbar,
|
|
body.index-landing-no-scrollbar::-webkit-scrollbar {
|
|
width: 0;
|
|
height: 0;
|
|
display: none;
|
|
}
|
|
|