57 lines
1.0 KiB
SCSS
57 lines
1.0 KiB
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 flex gap-2 p-2.5 border-b border-primary-700 bg-gradient-to-l from-primary-700;
|
|
.logo {
|
|
@apply text-2xl;
|
|
svg {
|
|
@apply text-3xl inline-block;
|
|
}
|
|
}
|
|
}
|
|
|
|
.sidebar {
|
|
@apply col-span-2
|
|
}
|
|
|
|
.content {
|
|
@apply col-span-10
|
|
}
|
|
|
|
.page-header {
|
|
@apply border-b border-primary-200 dark:border-primary-950 py-2.5 bg-gradient-to-l from-primary-200 dark:from-primary-950;
|
|
}
|
|
|
|
dl {
|
|
@apply grid grid-cols-12;
|
|
dt {
|
|
@apply col-span-full
|
|
}
|
|
dd {
|
|
@apply col-span-full col-start-2;
|
|
&:last-of-type {
|
|
@apply mb-2
|
|
}
|
|
}
|
|
|
|
}
|
|
} |