Jukka Raimovaara

Results 122 comments of Jukka Raimovaara

BModal has scoped styles, that aren't included in the scss. add these to your style for now: ```css .modal.show { display: block; } .modal-dialog { z-index: 1051; } ``` @VividLemon...

> Seemed more user friendly to use BOverlay. That way one could modify the props to make a more fine grained background. Whether or not it would ever be used,...

@sebastian-raubach seems like BAlert and BFormFile are only others that have scoped styles.

Maybe we could add backdrop prop that adds the class to boverlay and have "both". I'll investigate when I have time.

@ptdev could you create a little example on stackblitz? just fork [this](https://stackblitz.com/edit/nuxt-starter-lqee3m?file=app.vue) and make it fail like you have? That would help me to focus on your problem and maybe...

@VividLemon It seems all the components that use Teleport are not working in nuxt. Should I convert the teleports back to RenderComponentOrSkip component? I can't get teleport to work in...

@ptdev this will be fixed in 0.16, we hope to get that out soon.

nuxt render teleport elements in the beginning of body, not the end like vue. We'll have to wait for this to be fixed for some of the hydration missmatches: https://github.com/nuxt/nuxt/issues/24207

@VividLemon should we default all the teleports to `#teleports` and maybe add a check to see that it exists and warn about that in dev mode? or could we just...

Noticed about ssr: in nuxt: `useId` must be used in a component with a single root element, as it uses this root element's attributes to pass the id from server...