You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Details
What browser were you using: Firefox/Chrome/Edge
What OS were you using:Window 10
Project version you have:V2.0.0
Describe the bug
The up open position is not selected when a part of the color picker block is outside of the windows.
To Reproduce
Steps to reproduce the behavior:
In the codepen exemple, add this style to the button : height : 100px. Resize the window so that the color picker exceeds.
Screenshots (Optional)
If applicable, add screenshots to help explain your problem.
Additional context (Optional)
For correct this bug replace in setup.js the line 61
if (top + picker.offsetHeight > window.innerHeight)
to
if (top + picker.offsetHeight + this.offsetHeight > window.innerHeight)
Thanks for your work !
The text was updated successfully, but these errors were encountered:
Details
What browser were you using: Firefox/Chrome/Edge
What OS were you using:Window 10
Project version you have:V2.0.0
Describe the bug
The up open position is not selected when a part of the color picker block is outside of the windows.
To Reproduce
Steps to reproduce the behavior:
In the codepen exemple, add this style to the button : height : 100px. Resize the window so that the color picker exceeds.
Screenshots (Optional)
If applicable, add screenshots to help explain your problem.
Additional context (Optional)
For correct this bug replace in setup.js the line 61
if (top + picker.offsetHeight > window.innerHeight)
to
if (top + picker.offsetHeight + this.offsetHeight > window.innerHeight)
Thanks for your work !
The text was updated successfully, but these errors were encountered: