2026-07-08 15:13:26 +08:00
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
2026-07-08 16:01:16 +08:00
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
|
|
html,
|
|
|
|
|
body,
|
|
|
|
|
#app {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
@apply bg-white text-black dark:bg-gray-900 dark:text-white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.drag-region {
|
|
|
|
|
-webkit-app-region: drag;
|
|
|
|
|
--wails-draggable: drag;
|
|
|
|
|
}
|