theme/src/style.css

28 lines
361 B
CSS
Raw Normal View History

2022-01-26 21:49:09 +00:00
@import url('/fonts/fonts.css');
/* Setting a base font size */
body {
font-size: 16px;
}
2022-01-26 20:58:18 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2022-01-26 21:49:09 +00:00
.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
@apply font-title font-semibold;
}
2022-01-29 16:28:06 +00:00
.notification {
@apply p-4 rounded;
}
.notification.is-warning {
@apply bg-yellow-300;
}