-
-
Notifications
You must be signed in to change notification settings - Fork 327
mergeLonghand breaks border-color #553
Copy link
Copy link
Closed
Labels
Description
mergeLonghand breaks CSS in cssnano@4.0.2.
Input:
.a {
border: solid transparent;
border-width: 0 8px 16px;
border-bottom-color: #eee;
}Output:
.a {
border: solid transparent;
border-color: currentColor currentColor #eee;
border-width: 0 8px 16px;
}currentColor is black by default, so instead of transparent, we have black.
Reactions are currently unavailable