11 lines
210 B
CSS
11 lines
210 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
@apply bg-white text-base font-normal text-gray-600;
|
|
|
|
--tool-bar-height: 4rem;
|
|
--content-height: calc(100vh - var(--tool-bar-height));
|
|
}
|