Open guivr opened 1 year ago
The converter is currently breaking when trying to convert any CSS code that contains @keyframes:
@keyframes test { 50% { opacity: 1; } } ... normal CSS here
It tries to convert 50% thinking it's a selector, then it breaks with Unmatched selector: %
50%
Unmatched selector: %
For now, it could ignore and don't convert @keyframes (because it's currently breaking the whole CSS conversion instead)
@keyframes
it's solved now?
Current Behavior
The converter is currently breaking when trying to convert any CSS code that contains @keyframes:
It tries to convert
50%
thinking it's a selector, then it breaks withUnmatched selector: %
Expected Behavior
For now, it could ignore and don't convert
@keyframes
(because it's currently breaking the whole CSS conversion instead)