mirror of
https://github.com/Lapikud/tipilan.git
synced 2026-03-23 13:24:21 +00:00
Increase font size in timetable
This commit is contained in:
@@ -24,7 +24,7 @@ export default function Timetable() {
|
|||||||
<button
|
<button
|
||||||
key={tab}
|
key={tab}
|
||||||
onClick={() => setActiveTab(tab)}
|
onClick={() => setActiveTab(tab)}
|
||||||
className={`${vipnagorgialla.className} uppercase italic px-4 py-2 text-sm sm:text-base font-semibold ${
|
className={`${vipnagorgialla.className} uppercase italic px-4 py-2 text-lg font-semibold ${
|
||||||
activeTab === tab
|
activeTab === tab
|
||||||
? "bg-[#00A3E0] text-white"
|
? "bg-[#00A3E0] text-white"
|
||||||
: "bg-[#007CAB] dark:bg-[#007CAB] text-[#EEE5E5] hover:bg-[#00A3E0] dark:hover:bg-[#007CAB]"
|
: "bg-[#007CAB] dark:bg-[#007CAB] text-[#EEE5E5] hover:bg-[#00A3E0] dark:hover:bg-[#007CAB]"
|
||||||
@@ -43,23 +43,23 @@ export default function Timetable() {
|
|||||||
className="border-l-3 border-[#007CAB] pl-4 flex flex-row gap-12"
|
className="border-l-3 border-[#007CAB] pl-4 flex flex-row gap-12"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className={` ${vipnagorgialla.className} text-[#00A3E0] text-4xl font-bold italic`}
|
className={` ${vipnagorgialla.className} text-[#00A3E0] text-5xl font-bold italic`}
|
||||||
>
|
>
|
||||||
{item.time}
|
{item.time}
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div
|
<div
|
||||||
className={`${vipnagorgialla.className} text-3xl italic font-bold text-[#2A2C3F] dark:text-[#EEE5E5]`}
|
className={`${vipnagorgialla.className} text-4xl italic font-bold text-[#2A2C3F] dark:text-[#EEE5E5]`}
|
||||||
>
|
>
|
||||||
{item.title}
|
{item.title}
|
||||||
</div>
|
</div>
|
||||||
{item.description && (
|
{item.description && (
|
||||||
<div className="text-xl text-[#938BA1] dark:text-[#938BA1]">
|
<div className="text-2xl text-[#938BA1] dark:text-[#938BA1]">
|
||||||
{item.description}
|
{item.description}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{item.location && (
|
{item.location && (
|
||||||
<div className="text-xl text-[#938BA1] dark:text-[#938BA1]">
|
<div className="text-2xl text-[#938BA1] dark:text-[#938BA1]">
|
||||||
{item.location}
|
{item.location}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Reference in New Issue
Block a user