class Roadie::StyleProperty

def value_with_important

def value_with_important
  if important
    "#{value} !important"
  else
    value
  end
end