Use translateX

pull/132/head
cagataycivici 2019-12-22 13:01:16 +03:00
parent 719f026198
commit b2a357e712
1 changed files with 4 additions and 4 deletions

View File

@ -745,12 +745,12 @@ body {
width: 550px; width: 550px;
z-index: 996; z-index: 996;
height: calc(100% - 70px); height: calc(100% - 70px);
transform: translate3d(550px, 0px, 0px);
@include transition(transform .2s); @include transition(transform .2s);
transform: translateX(550px);
background-color: #ffffff; background-color: #ffffff;
&.layout-config-active { &.layout-config-active {
transform: translate3d(0px, 0px, 0px); transform: translateX(0);
.layout-config-content { .layout-config-content {
.layout-config-button { .layout-config-button {
@ -914,7 +914,7 @@ body {
.layout-config { .layout-config {
top: 110px; top: 110px;
height: calc(100% - 110px); height: calc(100% - 110px);
transform: translate3d(100%, 0px, 0px); transform: translateX(100%);
.layout-config-button { .layout-config-button {
left: auto; left: auto;
@ -923,7 +923,7 @@ body {
&.layout-config-active { &.layout-config-active {
width: 100%; width: 100%;
transform: translate3d(0px, 0px, 0px); transform: translateX(0);
} }
} }
} }