Skip to content

Commit

Permalink
fix(footer): Fixed text in team & footer sections.
Browse files Browse the repository at this point in the history
* Fixed spacing on mobile and letter size on marquees

* Fixed horizontal spacing for acheivement text

* Hopefuly this fixes the remote build.
  • Loading branch information
mikedegeofroy authored Oct 24, 2024
1 parent 5b8a3ca commit fd8deb0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 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/modules/team.section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const supporters: People[] = [

export const TeamSection = () => {
return (
<div id='team' className='min-h-screen pt-24'>
<div id='team' className='w-[90%] mx-auto min-h-screen pt-24'>
<p className='text-center text-xl pb-12'>Команда</p>
<div className='grid md:grid-cols-2 lg:grid-cols-3 w-[90%] mx-auto gap-5'>
{team.map((person, index) => (
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
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@ export default {
},
},
},
plugins: [require('tailwindcss-animate')],
plugins: [],
};

0 comments on commit fd8deb0

Please sign in to comment.