KidoKoding/frontend/src/app/styles.css
2024-09-02 23:59:12 +07:00

26 lines
354 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
*,
::before,
::after {
@apply border-base-content/10;
}
}
.console-feed > div {
@apply flex flex-col-reverse;
}
.console-feed > div > div {
@apply py-3;
}
.console-feed span,
.console-feed summary {
@apply text-base;
}
.monaco-editor {
@apply outline-none;
}