22 lines
305 B
CSS
22 lines
305 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
h1 {
|
|
@apply text-2xl text-white uppercase mb-4;
|
|
}
|
|
h2 {
|
|
@apply text-xl text-white mb-4;
|
|
}
|
|
p {
|
|
@apply mb-2 text-neutral-400;
|
|
}
|
|
}
|
|
|
|
@layer components {
|
|
.border-default {
|
|
@apply border-vega-dark-200;
|
|
}
|
|
}
|