26 lines
354 B
CSS
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;
|
|
} |