mirror of
https://github.com/picocss/pico.git
synced 2025-04-25 18:56:15 -04:00
refactor: animation name with dash-case
This commit is contained in:
parent
b0b4c3f10d
commit
36832baec6
14 changed files with 29 additions and 29 deletions
|
@ -135,7 +135,7 @@ dialog {
|
|||
|
||||
dialog {
|
||||
animation-duration: ($animation-duration * 4);
|
||||
animation-name: modalOverlay;
|
||||
animation-name: modal-overlay ;
|
||||
|
||||
> article {
|
||||
animation-delay: $animation-duration;
|
||||
|
@ -152,7 +152,7 @@ dialog {
|
|||
}
|
||||
}
|
||||
|
||||
@keyframes modalOverlay {
|
||||
@keyframes modal-overlay {
|
||||
from {
|
||||
backdrop-filter: none;
|
||||
background-color: transparent;
|
||||
|
|
|
@ -59,7 +59,7 @@ progress {
|
|||
var(--progress-background-color) 30%
|
||||
)
|
||||
top left / 150% 150% no-repeat;
|
||||
animation: progressIndeterminate 1s linear infinite;
|
||||
animation: progress-indeterminate 1s linear infinite;
|
||||
|
||||
&[value]::-webkit-progress-value {
|
||||
background-color: transparent;
|
||||
|
@ -79,7 +79,7 @@ progress {
|
|||
}
|
||||
}
|
||||
|
||||
@keyframes progressIndeterminate {
|
||||
@keyframes progress-indeterminate {
|
||||
0% {
|
||||
background-position: 200% 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue