fix mismatch in push animation

This commit is contained in:
Kevin Ross 2016-01-22 11:57:34 -06:00
parent 887b266026
commit f2bc1bc2b8
3 changed files with 3 additions and 7 deletions

View File

@ -34,6 +34,7 @@
flex-shrink: 0; flex-shrink: 0;
justify-content: flex-start; justify-content: flex-start;
transform: translateZ(0); // mobile webkit smooth scrolling transform: translateZ(0); // mobile webkit smooth scrolling
@include material-animation-default();
} }
// Content layout, belongs in a mdb-layout-container // Content layout, belongs in a mdb-layout-container
@ -46,7 +47,7 @@
overflow-y: auto; // mobile webkit smooth scrolling may need scroll, but auto seems to be working and omits the scroll border overflow-y: auto; // mobile webkit smooth scrolling may need scroll, but auto seems to be working and omits the scroll border
flex-grow: 1; flex-grow: 1;
-webkit-overflow-scrolling: touch; // mobile webkit smooth scrolling -webkit-overflow-scrolling: touch; // mobile webkit smooth scrolling
@include material-animation-default();
} }
// Pushes flex-based content to the other end (x or y) // Pushes flex-based content to the other end (x or y)

View File

@ -33,11 +33,6 @@ $mdb-brand-inverse: $indigo !default;
// Typography elements FIXME: review to see if we actually need these // Typography elements FIXME: review to see if we actually need these
$icon-color: rgba($black, 0.5) !default; $icon-color: rgba($black, 0.5) !default;
// ANIMATION
$mdb-animation-curve-fast-out-slow-in: cubic-bezier(0.4, 0, 0.2, 1) !default;
$mdb-animation-curve-linear-out-slow-in: cubic-bezier(0, 0, 0.2, 1) !default;
$mdb-animation-curve-fast-out-linear-in: cubic-bezier(0.4, 0, 1, 1) !default;
$mdb-animation-curve-default: $mdb-animation-curve-fast-out-slow-in !default;
//--- //---
// FIXME: Similar but not quite the same as Bootstrap variables // FIXME: Similar but not quite the same as Bootstrap variables
@ -105,4 +100,3 @@ $mdb-animation-curve-fast-out-slow-in: cubic-bezier(0.4, 0, 0.2, 1) !default;
$mdb-animation-curve-linear-out-slow-in: cubic-bezier(0, 0, 0.2, 1) !default; $mdb-animation-curve-linear-out-slow-in: cubic-bezier(0, 0, 0.2, 1) !default;
$mdb-animation-curve-fast-out-linear-in: cubic-bezier(0.4, 0, 1, 1) !default; $mdb-animation-curve-fast-out-linear-in: cubic-bezier(0.4, 0, 1, 1) !default;
$mdb-animation-curve-default: $mdb-animation-curve-fast-out-slow-in !default; $mdb-animation-curve-default: $mdb-animation-curve-fast-out-slow-in !default;

View File

@ -45,6 +45,7 @@
} }
} }
> .mdb-layout-header,
> .mdb-layout-content { > .mdb-layout-content {
margin-#{$side}: 0; margin-#{$side}: 0;
} }