Fixed content menu and modal styles

This commit is contained in:
Grzegorz Leoniec 2019-01-18 14:57:43 +01:00
parent 90d7b94e7a
commit 91a9aed46a
No known key found for this signature in database
GPG Key ID: 3AA43686D4EB1377
2 changed files with 2 additions and 4 deletions

View File

@ -24,7 +24,7 @@
> >
<ds-menu :routes="routes"> <ds-menu :routes="routes">
<ds-menu-item <ds-menu-item
slot="Navigation" slot="menuitem"
slot-scope="item" slot-scope="item"
:route="item.route" :route="item.route"
:parents="item.parents" :parents="item.parents"

View File

@ -90,13 +90,11 @@
.ds-transition-modal-appear-enter-active { .ds-transition-modal-appear-enter-active {
opacity: 1; opacity: 1;
transition: all 200ms $ease-out-bounce ; transition: all 200ms $ease-out-bounce;
transition-delay: 0;
transform: translate3d(-50%, -50%, 0) scale(1); transform: translate3d(-50%, -50%, 0) scale(1);
} }
.ds-transition-modal-appear-enter, .ds-transition-modal-appear-enter,
.ds-transition-modal-appear-leave-active { .ds-transition-modal-appear-leave-active {
opacity: 0; opacity: 0;
transition-delay: 0;
transform: translate3d(-50%, -50%, 0) scale(0.8); transform: translate3d(-50%, -50%, 0) scale(0.8);
} }