fix: update Logo component styling for consistency

- Adjusted Logo component to explicitly set width and height attributes for the logo image.
- Ensured inline styles reflect the new dimensions for better rendering across different devices.
This commit is contained in:
sebseb7
2025-08-31 06:46:34 +02:00
parent 64bf798843
commit b3810fded7

View File

@@ -18,7 +18,9 @@ const Logo = () => {
<img <img
src="/assets/images/sh.png" src="/assets/images/sh.png"
alt="SH Logo" alt="SH Logo"
style={{ height: "45px" }} width="108px"
height="45px"
style={{ width: "108px", height: "45px" }}
/> />
</Box> </Box>
); );