Fix Bug 69244

Custom logo doesn't fit on mobile
This commit is contained in:
Viktor Fomin 2024-07-17 12:21:20 +03:00
parent 1b557d99bf
commit 97d7847fd3

View File

@ -43,6 +43,10 @@ const StyledSimpleNav = styled.div`
justify-content: center;
background-color: ${(props) => props.theme?.login?.navBackground};
.logo {
height: 24px;
}
@media ${mobile} {
display: flex;
@ -67,7 +71,7 @@ const SimpleNav = ({ systemTheme }: SimpleNavProps) => {
return (
<StyledSimpleNav id="login-header">
<img src={logoUrl} alt="logo-url" />
<img className="logo" src={logoUrl} alt="logo-url" />
<LanguageComboboxWrapper />
</StyledSimpleNav>
);