21 lines
397 B
CSS
21 lines
397 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
font-family:
|
|
'Public Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
font-weight: 300;
|
|
}
|
|
|
|
@layer components {
|
|
.h-screen-n {
|
|
@apply min-h-screen pt-16
|
|
}
|
|
}
|
|
|
|
@layer utilities {
|
|
.flow > * + * {
|
|
margin-top: .5em;
|
|
}
|
|
} |