Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Broken identical @keyframes #834

Open
cuongvuong-phoenix opened this issue Mar 4, 2022 · 1 comment
Open

Broken identical @keyframes #834

cuongvuong-phoenix opened this issue Mar 4, 2022 · 1 comment

Comments

@cuongvuong-phoenix
Copy link

Description

When defining multiple identical @keyframes, all definitions except the first one are empty.

Reproduction

  • Input file:

    @keyframes pulse {
      50% {
        opacity: 0.5;
      }
    }
    
    @keyframes pulse {
      50% {
        opacity: 0.5;
      }
    }
  • Output file:

    @keyframes pulse {
      50% {
        opacity: 0.5;
      }
    }
    
    @keyframes pulse {
    }

Environment

  • postcss: 8.4.7
  • postcss-combine-duplicated-selectors: 10.0.3
@ChristianMurphy
Copy link
Owner

Pull requests are welcome!

cuongvuong-phoenix added a commit to cuongvuong-phoenix/cuongvuong-phoenix.com that referenced this issue Mar 4, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants