Fix transition end of the sidenav content

This commit is contained in:
Marcos Moura 2016-07-22 02:37:23 -03:00
parent fff91378a9
commit bb14e04218
2 changed files with 6 additions and 2 deletions

View file

@ -25,11 +25,9 @@
bottom: 0;
z-index: 2;
pointer-events: none;
opacity: .7;
transition: $swift-ease-out;
&.md-active {
opacity: 1;
pointer-events: auto;
box-shadow: $material-shadow-16dp;
transform: translate3d(0, 0, 0);

View file

@ -4,6 +4,12 @@ import VueMaterial from '../vue-material';
for (let component in VueMaterial) {
if (component === 'MdTheme') {
Vue.use(VueMaterial[component], {
default: {
primary: {
color: 'green',
hue: 800
}
},
'bottom-bar': {
primary: 'teal'
}