Skip to content

Commit

Permalink
fix: arrow hidding
Browse files Browse the repository at this point in the history
  • Loading branch information
Akryum committed Jan 14, 2022
1 parent e28f594 commit d9644c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/docs/src/migration/migration-from-v3.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ New prop:

### `v-popper__popper--arrow-overflow`

The `v-popper__popper--arrow-overflow` class is added on the `v-popper_popper` element when the arrow is overflowing past the reference bounds. By default, `v-popper__arrow-container` has `visibility: hidden` which hides the arrow.
The `v-popper__popper--arrow-overflow` class is added on the `v-popper_popper` element when the arrow is overflowing past the reference bounds. By default, `v-popper__arrow-container` has `display: none;` which hides the arrow.

### Auto max size

Expand Down
2 changes: 1 addition & 1 deletion packages/floating-vue/src/components/PopperContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export default {
}
.v-popper__popper--arrow-overflow .v-popper__arrow-container {
visibility: hidden;
display: none;
}
.v-popper__arrow-inner,
Expand Down

0 comments on commit d9644c2

Please sign in to comment.