Importing padding CSS style property with shorthand value produces an incorrect result.
Example:
Importing
padding: 5px; style is imported as
padding-top: 5px, padding-right: 0px, padding-bottom: 0px, padding-left: 0pxPadding syntax can be seen in the
specification.
Workaround: Apply padding values for all four sides.