Skip to content

Commit

Permalink
Fix some thinks after review
Browse files Browse the repository at this point in the history
  • Loading branch information
Matushl committed Dec 9, 2023
1 parent 9bc020c commit 7b5cf91
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/components/PageLayout/Footer/Footer.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
background-color: transparent;

a {
padding: 0px 5px;
border-bottom: 5px solid white;
border-color: white;
color: white;
background-color: inherit;
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/PageLayout/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const Footer: FC = () => {
))}
{menuItemsError && <p>{menuItemsError.message}</p>}
</Stack>
<Stack direction="row" m={2} gap={2} justifyContent="center" sx={{flexWrap: 'wrap'}}>
<Stack direction="row" m={2} mt={5} gap={2} justifyContent="center" sx={{flexWrap: 'wrap'}}>
{logosIsLoading && <Loading />}
{logos.map((logo) => (
<Logo key={logo.id} {...logo} />
Expand Down
2 changes: 1 addition & 1 deletion src/components/PageLayout/Footer/Logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const Logo: FC<ILogo> = ({name, image}) => {
<Box
component={'img'}
src={image}
alt={name} // TODO: alt from backend
alt={name}
sx={{
maxHeight: '9rem',
}}
Expand Down

0 comments on commit 7b5cf91

Please sign in to comment.