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

CSS code beautify issue #4367

Closed
kazimshah39 opened this issue Aug 21, 2020 · 1 comment
Closed

CSS code beautify issue #4367

kazimshah39 opened this issue Aug 21, 2020 · 1 comment

Comments

@kazimshah39
Copy link

Hi, there is an issue with the "beautify code" feature for css files.

Issue occurs with css animation code.
Below is my css code.


.floating-alert {
display: none;
position: absolute;
z-index: 999;
top: 38px;
left: 50%;
transform: translateX(-50%);
-moz-animation: floatingAlert ease-in 3s forwards;
-webkit-animation: floatingAlert ease-in 3s forwards;
-o-animation: floatingAlert ease-in 3s forwards;
animation: floatingAlert ease-in 3s forwards;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}


After "beautify"


.floating-alert {
display: none;
position: absolute;
z-index: 999;
top: 38px;
left: 50%;
transform: translateX(-50%);
-moz-animation: floatingAlertease-in 3s forwards;
-webkit-animation: floatingAlertease-in 3s forwards;
-o-animation: floatingAlertease-in 3s forwards;
animation: floatingAlertease-in 3s forwards;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}

Beautify feature, removed the space between "floatingAlert" and "ease-in" which is incorrect css.

Please fix this issue.

@github-actions
Copy link

github-actions bot commented May 9, 2022

This issue has not received any attention in 1 year. If you want to keep this issue open, please leave a comment below and auto-close will be canceled.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant