-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Description
This plugin combines declarations into shorthands:
inset-block-start: 10px;
inset-block-end: 15px;
inset-inline-start: 20px;
inset-inline-end: 25px;
/* becomes */
inset-block: 10px 15px;
inset-inline: 20px 25px;
But the following case is not supported by browsers and as a consequence break the styles.
inset-block-start: unset;
inset-block-end: 15px;
inset-inline-start: 20px;
inset-inline-end: unset;
/* becomes */
inset-block: unset 15px;
inset-inline: 20px unset;
What to do:
- Check declarations for these global values:
inherit
,initial
,revert
,revert-layer
andunset
. Do not merge if any of them includes these.
Metadata
Metadata
Assignees
Labels
No labels