Use PostCSS intead of Sass

This commit is contained in:
Oliver Davies 2019-03-10 00:34:21 +00:00
parent f6cbe15321
commit 616778609a

View file

@ -105,25 +105,31 @@ export default {
}
</script>
<style lang="sass">
#header a
@apply text-white no-underline
<style type="postcss">
#header a {
@apply text-white no-underline;
&:hover,
&:focus
&:focus {
@apply underline
}
}
#main a
@apply text-blue-dark no-underline border-b border-blue border-dotted
#main a {
@apply text-blue-dark no-underline border-b border-blue border-dotted;
&:hover,
&:focus
&:focus {
@apply text-blue border-solid
}
}
#footer a
@apply text-white no-underline border-b border-dotted border-white
#footer a {
@apply text-white no-underline border-b border-dotted border-white;
&:hover,
&:focus
&:focus {
@apply border-none
}
}
</style>