3
0
mirror of https://github.com/Qortal/q-tube.git synced 2025-02-14 11:15:52 +00:00

fix horizontal overflow

This commit is contained in:
PhilReact 2025-01-06 15:53:02 +02:00
parent 7b9217eed2
commit 03e7e954e7

View File

@ -59,8 +59,7 @@ const ResponsiveImage: React.FC<ResponsiveImageProps> = ({
width: "100%", width: "100%",
height: "100%", height: "100%",
borderRadius: "8px", borderRadius: "8px",
visibility: loading ? "hidden" : "visible", display: loading ? "none" : "unset",
position: loading ? "absolute" : "unset",
objectFit: "contain", objectFit: "contain",
}} }}
/> />