@@ -187,7 +187,7 @@ function SupportUsButton({
187187 < h2 className = { `font-extrabold text-4xl md:text-5xl lg:text-6xl` } >
188188 { organizationInformation . name }
189189 </ h2 >
190- < p className = "font-[650]" >
190+ < p className = "font-[650] text-lg " >
191191 { organizationInformation . description }
192192 </ p >
193193 </ div >
@@ -249,6 +249,14 @@ function SupportUsButton({
249249 // List of sponsors with their logos and links, styled according to the selected theme and custom class names
250250 < div
251251 className = { `${ classNames . sponsors } ${ classAccordingToTheme ( Theme ) }
252+
253+ // Shadows for different themes
254+ ${ Theme === "AOSSIE" && "shadow-[0_0_15px_rgba(255,215,0,1)]" }
255+ ${ Theme === "light" && "shadow-[0_0_20px_rgba(0,0,0,0.15)]" }
256+ ${ Theme === "dark" && "shadow-[0_0_25px_rgba(0.5,0.5,0.5,0.5)]" }
257+ ${ Theme === "minimal" && "shadow-[0_0_15px_rgba(0,0,0,0.2)]" }
258+ ${ Theme === "corporate" && "shadow-[0_0_25px_rgba(37,99,235,0.3)]" }
259+
252260 relative w-[90%] flex flex-col p-8 rounded-2xl gap-25 mt-15 overflow-hidden` }
253261 >
254262 { /* Sponsor pattern AOSSIE */ }
0 commit comments