Fix topbar keys (#34)

This commit is contained in:
Szymon Szlachtowicz 2021-08-31 22:41:32 +02:00 committed by GitHub
parent a2bca6f2ea
commit aae698c9b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -15,8 +15,8 @@ export function TopBar({ logo, title }: TopBarProps) {
<ContentWrapper>
<Logo style={{ backgroundImage: `url(${logo})` }} />
<TitleWrapper>
{title.split(' ').map((text) => (
<div>{text}</div>
{title.split(' ').map((text, idx) => (
<div key={idx}>{text}</div>
))}
</TitleWrapper>
{account ? (

View File

@ -57,7 +57,7 @@ const PopUpWindow = styled.div`
flex-direction: column;
justify-content: space-between;
width: 468px;
max-height: 90vh;
max-height: 75vh;
background-color: white;
margin: 20vh auto 2vh;
padding: 24px 24px 32px;