Skip to content

Commit

Permalink
Fixed spacing on mobile and letter size on marquees
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedegeofroy committed Oct 24, 2024
1 parent 5b8a3ca commit bace995
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/components/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ export const Icons = {
src='/logo-icons/2.png'
alt='logo'
className={twMerge(
"h-[2rem] w-[2rem] inline-block object-contain",
"h-[1.5rem] w-[1.5rem] md:h-[2rem] md:w-[2rem] inline-block object-contain",
props.className
)}
/>
Expand All @@ -409,7 +409,7 @@ export const Icons = {
src='/icons/coffee.png'
alt='logo'
className={twMerge(
"h-[2rem] w-[2rem] inline-block object-contain",
"h-[1.5rem] w-[1.5rem] md:h-[2rem] md:w-[2rem] inline-block object-contain",
props.className
)}
/>
Expand Down
4 changes: 2 additions & 2 deletions app/components/news-ticker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const NewsTicker = ({ newsTop, newsBottom }: NewsTickerProps) => {
key={`${index}_${x.title}}`}
className='pr-10 flex items-center gap-5'
>
{x.icon} <span className='text-xl'>{x.title}</span>
{x.icon} <span className='text-lg md:text-xl'>{x.title}</span>
</div>
))}
</Marquee>
Expand All @@ -29,7 +29,7 @@ export const NewsTicker = ({ newsTop, newsBottom }: NewsTickerProps) => {
key={`${index}_${x.title}}`}
className='pr-10 flex items-center gap-5'
>
{x.icon} <span className='text-xl'>{x.title}</span>
{x.icon} <span className='text-lg md:text-xl'>{x.title}</span>
</div>
))}
</Marquee>
Expand Down
2 changes: 1 addition & 1 deletion app/pages/home.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const HomePage = () => {
return (
<>
<Header />
<div className='space-y-20 md:space-y-10'>
<div className='space-y-10'>
<HeroSection />
<ProjectsSection />
<AcheivementsSection />
Expand Down

0 comments on commit bace995

Please sign in to comment.