Skip to content

Commit

Permalink
Update font sizes and margins for mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
kuzdogan committed May 24, 2024
1 parent 9f44e48 commit e695d86
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/pages/schedule.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ const ProgramItem = ({
: startDate;

return (
<li
<div
className={`${isExtravaganza ? "text-berlin-red" : ""} ${
currentDate > endDate
? "text-gray-300"
: currentDate > startDate
? "font-bold animate-pulse-faster"
: className
} list-none text-lg`}
} list-none md:text-lg mt-1`}
>
<span className="fake-bold">
<span className="text-berlin-red opacity-50">{"> "}</span>
Expand Down Expand Up @@ -91,7 +91,7 @@ const ProgramItem = ({
<span className="underline">{loc.name}</span>
</button>
))}
</li>
</div>
);
};

Expand Down Expand Up @@ -132,7 +132,7 @@ const SpeechItem = ({
className={className}
/>
<div
className={`ml-8 -mt-2 mb-4 text-sm ${
className={`ml-8 text-sm ${
currentDate > endDate
? "text-gray-300"
: currentDate > startDate
Expand Down Expand Up @@ -558,7 +558,6 @@ const Program = () => {
endTime="23:59"
title="Art Exhibition: co-create"
eventLocations={[locations.artExhibition]}
isExtravaganza
/>
)}
<SpeechItem
Expand All @@ -578,7 +577,6 @@ const Program = () => {
title="Privacy Corner: Project Ideation Session"
isExtravaganza
eventLocations={[locations.library]}
isExtravaganza
/>
)}
<SpeechItem
Expand Down

0 comments on commit e695d86

Please sign in to comment.