vue-a11y / vue-focus-loop

Vue component that helps you to to trap focus in an element.
http://vue-focus-loop.surge.sh/
MIT License
24 stars 3 forks source link

Height issue #6

Closed jockeeskis closed 3 years ago

jockeeskis commented 3 years ago

Would be nice to be able to style this div

image

Its causing alot of height issues for some modals. Or it should atleast always be height: 100% or something like that

ktquez commented 3 years ago

Hi @jockeeskis

You can use like this:

.vue-focus-loop > div:nth-child(2) {
  height: 100%;
}