You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue is arose when using tailwind's @apply border-blue-600 which pulls in the two border-color rules, and then wanting to hide parts of the border.
The text was updated successfully, but these errors were encountered:
border-color: #3182ce; can't be moved after border-color: rgba(49, 130, 206, var(--border-opacity)); as the latter is an override which is handled by browsers understanding rgba() and variables
we can't pull border-top-color: transparent; into both border-colors as it'd result in a longer content
But your bug fix is still valid - clean-css is wrong getting rid of the border-top-color. Let me fix it.
Environment
clean-css@4.2.3
node @ v14.14.0
os linux
Input CSS
Actual output CSS
Expected output CSS
The issue is arose when using tailwind's @apply border-blue-600 which pulls in the two border-color rules, and then wanting to hide parts of the border.
The text was updated successfully, but these errors were encountered: