feat(custom-logo): constraint svg logo dimensions (#1243)

This commit is contained in:
Rıdvan Akca
2023-08-25 22:43:53 +03:00
committed by GitHub
parent a3b3038709
commit 823d85b24a
2 changed files with 10 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
import styled from '@emotion/styled';
export const LogoImage = styled('img')(() => ({
maxWidth: 200,
maxHeight: 50,
width: '100%',
height: 'auto',
}));