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> </script>
<style lang="sass"> <style type="postcss">
#header a #header a {
@apply text-white no-underline @apply text-white no-underline;
&:hover, &:hover,
&:focus &:focus {
@apply underline @apply underline
}
}
#main a #main a {
@apply text-blue-dark no-underline border-b border-blue border-dotted @apply text-blue-dark no-underline border-b border-blue border-dotted;
&:hover, &:hover,
&:focus &:focus {
@apply text-blue border-solid @apply text-blue border-solid
}
}
#footer a #footer a {
@apply text-white no-underline border-b border-dotted border-white @apply text-white no-underline border-b border-dotted border-white;
&:hover, &:hover,
&:focus &:focus {
@apply border-none @apply border-none
}
}
</style> </style>