fix(title-bar) Updated animation duration (#10688)

This commit is contained in:
Robert Pintilii 2021-12-23 15:06:14 +02:00 committed by GitHub
parent 9dd3941388
commit 804573e9aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
.subject {
color: #fff;
transition: opacity .3s ease-in;
transition: opacity .6s ease-in-out;
z-index: $zindex3;
margin-top: 20px;
opacity: 0;
@ -11,14 +11,14 @@
&#autoHide.with-always-on {
overflow: hidden;
animation: hideSubject forwards .3s ease-out;
animation: hideSubject forwards .6s ease-out;
& > .subject-info-container {
justify-content: flex-start;
}
&.visible {
animation: showSubject forwards .3s ease-out;
animation: showSubject forwards .6s ease-out;
}
}
}