Hi :),
First of all thanks a lot for this wonderful library.
According to CanIUse, margin-inline and padding-inline are supported from Safari 14.5, but margin-inline-end/start and padding-inline-end/start from Safari 12.2.
I set the target for Safari 13. As of today, this:
p {
margin-inline: auto;
padding-inline: 2px;
}
is compiled to:
p {
margin-inline: auto;
padding-inline: 2px;
}
while it should compile to:
p {
margin-inline-start: auto;
margin-inline-end: auto;
padding-inline-start: 2px;
padding-inline-end: 2px;
}
Thanks!