Skip to content

Commit

Permalink
added the ga-campuses class to campus menu
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramin Farhadi authored and Ramin Farhadi committed Jul 3, 2024
1 parent 96b3ffd commit 2852f53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Campuses.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const Campuses = ({ campus, onclick }: CampusesProps) => {
<div className='d-flex w-100 flex-wrap justify-content-around mb-2'>
{campus.map((campusData, index) => (
<React.Fragment key={index}>
<a href={`#${campusData.shortName.toLowerCase()}`} className='text-decoration-none' onClick={()=> onclick(campusData)}>{campusData.shortName.toUpperCase()}</a>{ index !== campus.length - 1 && <span>|</span> }
<a href={`#${campusData.shortName.toLowerCase()}`} className='ga-campuses text-decoration-none' onClick={()=> onclick(campusData)}>{campusData.shortName.toUpperCase()}</a>{ index !== campus.length - 1 && <span>|</span> }
</React.Fragment>
))}
</div>
Expand Down

0 comments on commit 2852f53

Please sign in to comment.