Vue3 + Pinia + Vite5 仿抖音,完全度90% . Vue3 + Pinia + Vite5 imitate TikTok with 90% completeness
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.
 
 
 
 
 

25 lines
394 B

@import "variables";
//一些变量
@import "utils";
//for循环生成的 margin、padding、width、height类
@import "custom";
//自定义的一些快捷css类
@import "color";
//颜色
@import "layout"; //布局
html, body {
width: 100%;
height: 100%;
//background: #2e3244;
background: $main-bg;
font-size: 62.5%;
margin: 0;
padding: 0;
}
p {
padding: 0;
margin: 0;
}