fix: change all opacity animation timings to 0.2s (#1753)

This commit is contained in:
Nolan Lawson 2020-04-30 21:54:07 -07:00 committed by GitHub
parent 4ad7de8e8d
commit 0c300f8e70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View File

@ -15,7 +15,7 @@
z-index: 100;
pointer-events: none;
opacity: 0;
transition: opacity 333ms linear;
transition: opacity 0.2s linear;
}
.loading-mask-container.loading-mask-container-shown {
pointer-events: auto;
@ -43,4 +43,4 @@
LoadingSpinner
}
}
</script>
</script>

View File

@ -10,7 +10,7 @@
left: 0;
right: 0;
opacity: 0;
transition: opacity 333ms linear;
transition: opacity 0.2s linear;
display: flex;
flex-direction: column;
align-items: center;

View File

@ -14,7 +14,7 @@
}
.virtual-list-header.shown {
display: block;
transition: opacity 0.333s linear;
transition: opacity 0.2s linear;
}
.virtual-list-header.faded-in {
opacity: 1;
@ -58,4 +58,4 @@
}
}
}
</script>
</script>

View File

@ -16,7 +16,7 @@
top: 0;
opacity: 0;
pointer-events: none;
transition: opacity 0.333s linear;
transition: opacity 0.2s linear;
contain: content; /* see https://www.w3.org/TR/2018/CR-css-contain-1-20181108/#valdef-contain-content */
}
.virtual-list-item.shown {