Mirror: CSS prefixing helpers in less than 1KB ๐ŸŒˆ

Remove unsupported {padding,margin}-{start,end}

These are obsolete properties for the more complex
{padding,margin}-inline-{start,end} and won't be
used since they're non-standard.

Changed files
-4
scripts
-4
scripts/generate-prefix-map.js
···
// NOTE: Their variants with before/after are not supported
// by Firefox and should be avoided
properties.push(...[
-
'margin-start',
-
'margin-end',
-
'padding-start',
-
'padding-end',
'border-start',
'border-start-color',
'border-start-style',
···
// NOTE: Their variants with before/after are not supported
// by Firefox and should be avoided
properties.push(...[
'border-start',
'border-start-color',
'border-start-style',