20 lines
228 B
SCSS
20 lines
228 B
SCSS
|
@tailwind base;
|
||
|
|
||
|
@layer base {
|
||
|
p {
|
||
|
@apply mb-2;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
@apply link link-primary;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@tailwind components;
|
||
|
@tailwind utilities;
|
||
|
|
||
|
@import "@xterm/xterm/css/xterm.css";
|
||
|
|
||
|
body {
|
||
|
@apply min-h-screen bg-base-200;
|
||
|
}
|