@@ -128,14 +128,18 @@ const FusakaCountdown = ({ liveNowText }: { liveNowText: string }) => {
128128 } , [ ] )
129129
130130 if ( timeUnits . isExpired ) {
131- return < p className = "text-2xl font-extrabold text-white" > { liveNowText } </ p >
131+ return (
132+ < p className = "text-lg font-extrabold text-white md:text-2xl" >
133+ { liveNowText }
134+ </ p >
135+ )
132136 }
133137
134138 return (
135- < div className = "flex items-center justify-center gap-4" >
139+ < div className = "flex items-center justify-center gap-2 md:gap- 4" >
136140 { timeUnits . days > 0 && (
137141 < div className = "flex flex-col items-center" >
138- < p className = "text-xl font-extrabold text-white md:text-3xl" >
142+ < p className = "text-lg font-extrabold text-white md:text-3xl" >
139143 { String ( timeUnits . days ) . padStart ( 2 , "0" ) }
140144 </ p >
141145 < p className = "text-xs font-bold uppercase text-white" >
@@ -144,13 +148,13 @@ const FusakaCountdown = ({ liveNowText }: { liveNowText: string }) => {
144148 </ div >
145149 ) }
146150 < div className = "flex flex-col items-center" >
147- < p className = "text-xl font-extrabold text-white md:text-3xl" >
151+ < p className = "text-lg font-extrabold text-white md:text-3xl" >
148152 { String ( timeUnits . hours ) . padStart ( 2 , "0" ) }
149153 </ p >
150154 < p className = "text-xs font-bold uppercase text-white" > { labels . hours } </ p >
151155 </ div >
152156 < div className = "flex flex-col items-center" >
153- < p className = "text-xl font-extrabold text-white md:text-3xl" >
157+ < p className = "text-lg font-extrabold text-white md:text-3xl" >
154158 { String ( timeUnits . minutes ) . padStart ( 2 , "0" ) }
155159 </ p >
156160 < p className = "text-xs font-bold uppercase text-white" >
@@ -159,7 +163,7 @@ const FusakaCountdown = ({ liveNowText }: { liveNowText: string }) => {
159163 </ div >
160164 { timeUnits . seconds !== null && (
161165 < div className = "flex flex-col items-center" >
162- < p className = "text-xl font-extrabold text-white md:text-3xl" >
166+ < p className = "text-lg font-extrabold text-white md:text-3xl" >
163167 { String ( timeUnits . seconds ) . padStart ( 2 , "0" ) }
164168 </ p >
165169 < p className = "text-xs font-bold uppercase text-white" >
0 commit comments