The right/bottom edge needed to be inverted to apply a propery "EdgeInsets" rather than "EdgeOffsets" behavior.
@@ -528,9 +528,9 @@ private extension NSLayoutAttribute {
} else if self == .Top {
return insets.top
} else if self == .Right {
- return insets.right
+ return -insets.right
} else if self == .Bottom {
- return insets.bottom
+ return -insets.bottom
}