You cannot 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
331 B
CSS

3 weeks ago
@tailwind base;
@tailwind components;
@tailwind utilities;
/* 禁止页面级滚动条html/body 禁止滚动,#app 用 100vh 限高,不用 overflow:hidden 避免破坏画布拖拽事件 */
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
#app {
width: 100%;
height: 100vh;
}