Skip to content

Commit d9644c2

Browse files
committed
fix: arrow hidding
1 parent e28f594 commit d9644c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/docs/src/migration/migration-from-v3.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ New prop:
127127

128128
### `v-popper__popper--arrow-overflow`
129129

130-
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.
130+
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.
131131

132132
### Auto max size
133133

packages/floating-vue/src/components/PopperContent.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export default {
138138
}
139139
140140
.v-popper__popper--arrow-overflow .v-popper__arrow-container {
141-
visibility: hidden;
141+
display: none;
142142
}
143143
144144
.v-popper__arrow-inner,

0 commit comments

Comments
 (0)