33 lines
411 B
SCSS
33 lines
411 B
SCSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
h1 {
|
|
@apply text-2xl;
|
|
}
|
|
|
|
h2 {
|
|
@apply text-xl;
|
|
}
|
|
|
|
h3 {
|
|
@apply text-lg;
|
|
}
|
|
|
|
.container {
|
|
@apply grid grid-cols-12 mx-auto gap-4
|
|
}
|
|
|
|
.header {
|
|
@apply col-span-12
|
|
}
|
|
|
|
.sidebar {
|
|
@apply col-span-2
|
|
}
|
|
|
|
.content {
|
|
@apply col-span-10
|
|
}
|
|
} |