Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fixing 'borderColor' not being propagated to css.
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
framer/LayerStyle.coffee
|
@@ -158,6 +158,6 @@ exports.LayerStyle = |
|
|
return layer._properties.borderRadius + "px" |
|
|
|
|
|
border: (layer) -> |
|
|
return "#{layer._properties.borderWidth}px solid #{layer._properties.borderWidth}" |
|
|
return "#{layer._properties.borderWidth}px solid #{layer._properties.borderColor}" |
|
|
|
|
|
|