Adjust animation speed, fix action block padding

This commit is contained in:
ErickSkrauch 2018-11-05 18:18:30 +03:00
parent a08cbbc0ff
commit 19453584d0

View File

@ -178,12 +178,14 @@
} }
} }
$appDetailsContainerRightLeftPadding: 30px;
.appDetailsContainer { .appDetailsContainer {
background: #F5F5F5; background: #F5F5F5;
border-top: 1px solid #eee; border-top: 1px solid #eee;
padding: 5px 30px; padding: 5px $appDetailsContainerRightLeftPadding;
position: relative; position: relative;
transition: transform 0.2s ease-in; transition: transform .3s cubic-bezier(0.165, 0.84, 0.44, 1);
} }
.appDetailsInfoField { .appDetailsInfoField {
@ -231,13 +233,15 @@
.appActionContainer { .appActionContainer {
position: absolute; position: absolute;
top: 100%; top: 100%;
left: 0;
padding: 0 $appDetailsContainerRightLeftPadding;
background: #F5F5F5; background: #F5F5F5;
} }
.appActionDescription { .appActionDescription {
composes: appDetailsDescription; composes: appDetailsDescription;
margin-top: 20px; margin-top: 6px;
} }
.continueActionButtonWrapper { .continueActionButtonWrapper {