Skip to content

Commit

Permalink
fix(VMenu): set border-radius to 4px for spec
Browse files Browse the repository at this point in the history
  • Loading branch information
johnleider committed Aug 30, 2019
1 parent ca8f510 commit bf2cb0e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/vuetify/src/components/VMenu/VMenu.sass
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@import '../../styles/styles.sass'
@import './_variables.scss'

.v-menu
display: block
Expand All @@ -18,7 +19,7 @@
&__content
position: absolute
display: inline-block
border-radius: 2px
border-radius: $menu-content-border-radius
max-width: 80%
overflow-y: auto
overflow-x: hidden
Expand Down
1 change: 1 addition & 0 deletions packages/vuetify/src/components/VMenu/_variables.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
$menu-content-border-radius: 4px !default;

0 comments on commit bf2cb0e

Please sign in to comment.