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 {
height: 100vh;