theme/src/style.css

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;
}