We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cb0af2 commit 28f2391Copy full SHA for 28f2391
src/components/ApiLogo/styled.elements.tsx
@@ -3,9 +3,8 @@ import styled from '../../styled-components';
3
4
export const LogoImgEl = styled.img`
5
max-height: ${props => props.theme.logo.maxHeight};
6
- width: auto;
+ width: ${props => props.theme.logo.width};
7
display: block;
8
- max-width: 100%;
9
`;
10
11
export const LogoWrap = styled.div`
src/theme.ts
@@ -53,7 +53,8 @@ const theme = {
53
backgroundColor: '#fafafa',
54
},
55
logo: {
56
- maxHeight: '150px',
+ maxHeight: 'none',
57
+ width: '100%',
58
59
rightPanel: {
60
backgroundColor: '#263238',
0 commit comments