mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 02:57:32 +00:00
Fix animation for compatibility with display: flex.
This commit is contained in:
parent
79caa14385
commit
a91de6c3a5
1 changed files with 7 additions and 5 deletions
|
@ -8,13 +8,15 @@
|
|||
bottom: 0;
|
||||
left: 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
background-color: rgba(0, 0, 0, .85);
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
background-image: linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .85));
|
||||
background-repeat: no-repeat;
|
||||
background-position-x: 0;
|
||||
color: #FFF;
|
||||
text-align: center;
|
||||
z-index: 102;
|
||||
transition: left ease-in-out @left-menu-animation-duration;
|
||||
transition: background-position ease-in-out @left-menu-animation-duration;
|
||||
overflow: auto;
|
||||
&::before {
|
||||
content: '';
|
||||
|
@ -29,7 +31,7 @@
|
|||
}
|
||||
|
||||
.feat-onboard-step2 {
|
||||
left: @left-menu-width;
|
||||
background-position-x: @left-menu-width;
|
||||
&::before {
|
||||
content: '';
|
||||
position: fixed;
|
||||
|
|
Loading…
Reference in a new issue