Skip to content

Commit

Permalink
fix: hero left side margin top using %
Browse files Browse the repository at this point in the history
  • Loading branch information
jimcase committed Aug 23, 2023
1 parent 08e968f commit 3f97427
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/summit-2023/src/components/Hero/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const Hero: React.FC = () => {
order: { xs: '1', sm: '1' },
}}
>
<div className="left-title-container" style={{ marginTop: isMobile ? '0px' : '120px' }}>
<div className="left-title-container" style={{ marginTop: isMobile ? '0px' : '15%' }}>
<Typography
className="title"
variant="h2"
Expand Down

0 comments on commit 3f97427

Please sign in to comment.