Skip to content

Commit

Permalink
feat: hide on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
yongenaelf committed Jun 19, 2024
1 parent d21d3f9 commit 1ec6c30
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,10 @@

.navbar__items [class^='iconExternalLink'] {
display: none;
}

@media screen and (max-width: 996px) {
.mobile-hidden {
display: none;
}
}
2 changes: 1 addition & 1 deletion src/theme/Footer/Links/MultiColumn/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default function FooterLinksMultiColumn({
}: Props): JSX.Element {
return (
<div className="row footer__links">
<div className="col footer__col">
<div className="col footer__col mobile-hidden">
<img src="/img/Logo.aelf.svg" />
</div>
{columns.map((column, i) => (
Expand Down

0 comments on commit 1ec6c30

Please sign in to comment.