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:
@@ -18,7 +18,9 @@ const Logo = () => {
|
||||
<img
|
||||
src="/assets/images/sh.png"
|
||||
alt="SH Logo"
|
||||
style={{ height: "45px" }}
|
||||
width="108px"
|
||||
height="45px"
|
||||
style={{ width: "108px", height: "45px" }}
|
||||
/>
|
||||
</Box>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user