This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
tasker/tasker-client/src/app/globals.css

26 lines
288 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
*,
*::before,
*::after {
box-sizing: border-box;
}
html,
body,
#root,
.app {
height: 100%;
width: 100%;
@apply text-sm;
@apply bg-white;
@apply dark:bg-black;
}
::-webkit-scrollbar {
width: 0px;
height: 0px;
}