@@ -91,6 +91,9 @@ const workshopDaySponsors: Image[] = [
91
91
} ,
92
92
]
93
93
94
+ const iconClassName =
95
+ "flex flex-col justify-center items-center text-center w-full h-full"
96
+
94
97
const SponsersConf = ( ) => {
95
98
return (
96
99
< div id = "sponsors" className = "bg-white py-10 static" >
@@ -104,7 +107,7 @@ const SponsersConf = () => {
104
107
{ sponsorDiamond . map ( ( sponsor , i ) => (
105
108
< a
106
109
key = { i }
107
- className = " zoom-diamond flex flex-col items-center text-center w-full h-full"
110
+ className = { ` zoom-diamond ${ iconClassName } ` }
108
111
href = { sponsor . link }
109
112
target = "_blank"
110
113
>
@@ -121,7 +124,7 @@ const SponsersConf = () => {
121
124
. map ( ( sponsor , i ) => (
122
125
< a
123
126
key = { i }
124
- className = " zoom-platinum self-center flex flex-col text-center w-full"
127
+ className = { ` zoom-platinum ${ iconClassName } ` }
125
128
href = { sponsor . link }
126
129
target = "_blank"
127
130
>
@@ -139,7 +142,7 @@ const SponsersConf = () => {
139
142
. map ( ( sponsor , i ) => (
140
143
< a
141
144
key = { i }
142
- className = " zoom-gold flex flex-col items-center text-center w-full h-full"
145
+ className = { ` zoom-gold ${ iconClassName } ` }
143
146
href = { sponsor . link }
144
147
target = "_blank"
145
148
>
@@ -157,7 +160,7 @@ const SponsersConf = () => {
157
160
. map ( ( sponsor , i ) => (
158
161
< a
159
162
key = { i }
160
- className = " zoom-silver flex flex-col items-center text-center w-full h-full"
163
+ className = { ` zoom-silver ${ iconClassName } ` }
161
164
href = { sponsor . link }
162
165
target = "_blank"
163
166
>
@@ -173,7 +176,7 @@ const SponsersConf = () => {
173
176
{ workshopDaySponsors . map ( ( sponsor , i ) => (
174
177
< a
175
178
key = { i }
176
- className = " zoom-platinum flex flex-col items-center text-center"
179
+ className = { ` zoom-platinum ${ iconClassName } ` }
177
180
href = { sponsor . link }
178
181
target = "_blank"
179
182
>
0 commit comments