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
The 'react-tiff/dist/index.css' file in your library, The CSS rules for canvas, specifically max-width and max-height, are affecting all canvas elements globally in our system. This is causing unintended side effects. canvas { max-width: 1024px; width: -moz-fit-content; width: fit-content; height: 100%; max-height: 700px; -o-object-fit: contain; object-fit: contain; }
Would it be possible to modify these styles so they only apply locally to the components in your library, rather than affecting all canvas elements globally? This would prevent conflicts with other canvas elements in our application.
Thank you for your consideration and assistance with this matter.
vite v3.1.0, React v18.2.0
The text was updated successfully, but these errors were encountered:
The 'react-tiff/dist/index.css' file in your library, The CSS rules for canvas, specifically max-width and max-height, are affecting all canvas elements globally in our system. This is causing unintended side effects.
canvas { max-width: 1024px; width: -moz-fit-content; width: fit-content; height: 100%; max-height: 700px; -o-object-fit: contain; object-fit: contain; }
Would it be possible to modify these styles so they only apply locally to the components in your library, rather than affecting all canvas elements globally? This would prevent conflicts with other canvas elements in our application.
Thank you for your consideration and assistance with this matter.
vite v3.1.0, React v18.2.0
The text was updated successfully, but these errors were encountered: