Extract entry-title into a component

This commit is contained in:
Oliver Davies 2019-03-23 07:18:14 +00:00
parent 750ae735ef
commit 05ba91b472
4 changed files with 20 additions and 2 deletions

View file

@ -0,0 +1,15 @@
.entry-title {
@apply text-black text-4xl font-bold mt-6 mb-8;
@screen md {
@apply text-5xl
}
}
.entry-title a {
@apply text-inherit;
&:hover {
@apply text-gray-800 no-underline
}
}