We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da2f327 commit 517e64aCopy full SHA for 517e64a
src/components/VNavigationDrawer/VNavigationDrawer.js
@@ -136,7 +136,7 @@ export default {
136
return marginTop
137
},
138
maxHeight () {
139
- if (!this.hasApp) return '100%'
+ if (!this.hasApp) return null
140
141
const maxHeight = (
142
this.$vuetify.application.bottom +
@@ -175,7 +175,7 @@ export default {
175
const styles = {
176
height: convertToUnit(this.height),
177
marginTop: `${this.marginTop}px`,
178
- maxHeight: `calc(100% - ${this.maxHeight}px)`,
+ maxHeight: `calc(100% - ${+this.maxHeight}px)`,
179
transform: `translateX(${this.calculatedTransform}px)`,
180
width: `${this.calculatedWidth}px`
181
}
0 commit comments