18 lines
207 B
CSS
18 lines
207 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
body {
|
|
background-color: #212121;
|
|
}
|
|
|
|
html {
|
|
@apply text-white;
|
|
}
|
|
|
|
a {
|
|
@apply text-indigo-400 !important;
|
|
}
|
|
}
|