How to Add a New Property to Modern Map - ModernInc/modern-style GitHub Wiki

Adding a new property to Modern Map is very simple.

######1. Make a new file in sass/helpers/modern-map/properties called _properties_"your property here".sass

######2. Add this code to that file:

="your property here"($value)
    // Set's $property to "your property here"
    $property: "your property here"

    +make-modern-map($value, $property)

######3. Finally edit the sass/helpers/modern-map/properties/propertys.sass with the following line:

@import properties_"your property here"