Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
KareemDa committed Dec 31, 2021
1 parent 6651e23 commit c67b8ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/vuetify/src/mixins/menuable/index.ts
Expand Up @@ -139,7 +139,8 @@ export default baseMixins.extend<options>().extend({
const activatorLeft = (this.attach !== false ? a.offsetLeft : a.left) || 0
const minWidth = Math.max(a.width, c.width)
let left = 0
left += this.left ? activatorLeft - (minWidth - a.width) : activatorLeft
left += activatorLeft
if (this.left || this.$vuetify.rtl) left -= (minWidth - a.width)
if (this.offsetX) {
const maxWidth = isNaN(Number(this.maxWidth))
? a.width
Expand Down

0 comments on commit c67b8ee

Please sign in to comment.