Use PostCSS intead of Sass
This commit is contained in:
parent
f6cbe15321
commit
616778609a
|
@ -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>
|
||||
|
|
Reference in a new issue