theme/src/style.css
kolaente 8dee481209
All checks were successful
continuous-integration/drone/push Build is passing
feat: update home page
2022-08-03 17:57:19 +02:00

28 lines
358 B
CSS

@import url('../static/fonts/fonts.css');
/* Setting a base font size */
body {
font-size: 16px;
}
@tailwind base;
@tailwind components;
@tailwind utilities;
.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
@apply font-title font-semibold;
}
.notification {
@apply rounded p-4;
}
.notification.is-warning {
@apply bg-yellow-300;
}