fix: remove width from logo for vertical logos

This commit is contained in:
Lakhan Samani 2023-11-23 15:42:17 +05:30
parent de5c18b60f
commit ad8bd64987

View File

@ -54,7 +54,7 @@ export default function App() {
<img <img
src={`${globalState.organizationLogo}`} src={`${globalState.organizationLogo}`}
alt="logo" alt="logo"
style={{ height: 60, width: 60, objectFit: 'cover' }} style={{ height: 60, objectFit: 'cover' }}
/> />
<h1>{globalState.organizationName}</h1> <h1>{globalState.organizationName}</h1>
</div> </div>