BeniaminoBaggins
BeniaminoBaggins

Reputation: 12433

Stylus variable for the css font attribute

What is wrong with this variable in stylus, which sets the font attribute in the shorthand syntax?

button-font = 100 16px Helvetica Neue', Helvetica, Arial, sans-serif

It produces this error:

expected "indent", got "eos"

Used here at the bottom of this 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

How do I get rid of the error?

Upvotes: 0

Views: 482

Answers (1)

MattMS
MattMS

Reputation: 1156

You have a single quote at the end of Helvetica Neue':

Should it be "Helvetica Neue"?

Upvotes: 3

Related Questions