panel/web/assets/css/styles.css
2024-11-03 15:33:08 -05:00

31 lines
No EOL
765 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
body {
height: 100svh;
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
color-scheme: dark;
color: rgba(255, 255, 255, 0.87);
background-color: #242424;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@layer components {
.editor {
@apply prose prose-sm sm:prose-base lg:prose-lg xl:prose-2xl m-5 focus:outline-none p-3 rounded-lg shadow-lg bg-slate-800;
}
.editor-controls button {
@apply btn btn-primary;
}
.active-editor-control {
@apply btn-secondary !important;
}
}