Can you help me troubleshoot this issue with the variable in stylus that is setting the font attribute using shorthand syntax?
button-font = 100 16px Helvetica Neue', Helvetica, Arial, sans-serif
I'm encountering the following error message:
Error: expected "indent", but received "eos"
This variable is being used at the end of the following code block:
@require "global_constants"
button.multiselect
height 64px
border 1px solid brand-colour
border-radius button-border-radius
ul.multiselect-container
width 100%
span.multiselect-selected-text
color brand-colour
text-transform uppercase
font button-font
Any suggestions on how to resolve this error would be greatly appreciated.