-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Strategy for Moving Widgets Outside Wrapper #109
Comments
Hmm, I think the widgets should be placed outside to support this use case. |
Are you saying you will update the carousel to place widgets outside? |
Yeap, done in 57a6ed2 |
I've created a new release including this change, see if it works as expected @ryanfitzer |
Sweet! I'll give it try today. Thanks for the quick turnaround. |
Works like a charm. Thanks again. |
It looks fine on the example page 🤔 |
Figured it out. Only happens when you use |
Due to the
overflow: hidden
on the carousel wrapper, all widgets are restricted from using css to position them outside of the wrapper.For example, if I wanted to add a border to the carousel wrapper and needed the Previous and Next buttons to be visually placed outside of that border, absolutely positioning them to be outside won't work. They would just be visually hidden due to the wrapper's
overflow: hidden
property.I imagine there is some way to create a widget that can be used to simply pass it's props onto some outside component, but I'm not really sure of the best way to do that. Any advice?
The text was updated successfully, but these errors were encountered: