You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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.
The text was updated successfully, but these errors were encountered: