I understand that the button active states are rem'ed out by default and are commented to be optional ... but the active to inactive transitions on the elbows are staggered and uneven (giving a weird glitching fade) ... here's my fix ... but is there another way to fix this without giving up the delay?
[class*="bg-"],
[class*="bg-"] > *:not([class*="bg-"]){
- transition:background-color .25s linear, border .25s linear; // Change this ...
+ transition:background-color linear, border linear; // to this ...
}
I understand that the button active states are rem'ed out by default and are commented to be optional ... but the active to inactive transitions on the elbows are staggered and uneven (giving a weird glitching fade) ... here's my fix ... but is there another way to fix this without giving up the delay?