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

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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