Skip to content
This repository has been archived by the owner on Jan 1, 2022. It is now read-only.

Commit

Permalink
Fix icon size in team page
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuboczoch committed Sep 25, 2021
1 parent 1246f14 commit 87c6188
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/components/elements/WarTeam/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ const WarTeam = (props: IWarTeam) => (
}
`}
>
<FontAwesomeIcon icon={faFortAwesome} style={{ marginRight: '4px' }} />
<FontAwesomeIcon
icon={faFortAwesome}
style={{ marginRight: '4px', height: '18px', width: '18px' }}
/>
{props.fields.title}
</span>
<div
Expand Down
1 change: 0 additions & 1 deletion src/containers/WarTeamsPage/useWarTeamsPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { IWarTeamsPageProps } from '../../pages/teams'
export interface IWarTeamsPageStateProps {}

const useWarTeamsPage = (props: IWarTeamsPageProps): IWarTeamsPageStateProps => {
console.log(props)
return {}
}

Expand Down

1 comment on commit 87c6188

@vercel
Copy link

@vercel vercel bot commented on 87c6188 Sep 25, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.