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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Typo in animation-iteration-count breaks animation repeat utilities #400

Merged
merged 1 commit into from
Jul 23, 2021

Conversation

ElMassimo
Copy link
Collaborator

Description 馃摉

This pull request fixes a typo in the animateIterationCount utility that causes the generated CSS to be incompatible with non-Webkit browsers.

Before

.animate {
    -webkit-animation-iteration-count: 1;
    aniamtion-iteration-count: 1
}

After

.animate {
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1
}

@ElMassimo ElMassimo requested a review from voorjaar July 23, 2021 18:26
@antfu antfu merged commit 23b1fa9 into main Jul 23, 2021
@antfu antfu deleted the fix-animation-typo branch July 23, 2021 18:34
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

Successfully merging this pull request may close these issues.

None yet

2 participants