Add default margins to headlines

This commit is contained in:
Björn Fromme
2022-03-14 18:35:54 +01:00
parent 3fc0e4f7b8
commit f690f48447
@@ -1,16 +1,16 @@
h1,
.headline--primary {
@apply block text-3xl md:text-4xl text-gray-800 font-bold;
@apply block text-3xl md:text-4xl text-gray-800 font-bold mb-2;
}
h2,
.headline--secondary {
@apply block text-2xl md:text-3xl text-gray-800 font-bold;
@apply block text-2xl md:text-3xl text-gray-800 font-bold mb-2;
}
h3,
.headline--3 {
@apply block text-xl md:text-2xl text-gray-800 font-bold leading-6;
@apply block text-xl md:text-2xl text-gray-800 font-bold leading-6 mb-2;
}
h4,