File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ export type FooterProps = {
61
61
| "bottomCopy"
62
62
| "brandLink"
63
63
| "logo"
64
+ | "operatorLogo"
64
65
| "partners"
65
66
| "partnersTitle"
66
67
| "partnersLogos"
@@ -269,7 +270,9 @@ export const Footer = memo(
269
270
) }
270
271
>
271
272
{ ( ( ) => {
272
- const children = < p className = { fr . cx ( "fr-logo" ) } > { brandTop } </ p > ;
273
+ const children = (
274
+ < p className = { cx ( fr . cx ( "fr-logo" ) , classes . logo ) } > { brandTop } </ p >
275
+ ) ;
273
276
274
277
return operatorLogo !== undefined ? (
275
278
children
@@ -287,7 +290,10 @@ export const Footer = memo(
287
290
) }
288
291
>
289
292
< img
290
- className = { cx ( fr . cx ( "fr-footer__logo" ) , classes . logo ) }
293
+ className = { cx (
294
+ fr . cx ( "fr-footer__logo" ) ,
295
+ classes . operatorLogo
296
+ ) }
291
297
style = { ( ( ) => {
292
298
switch ( operatorLogo . orientation ) {
293
299
case "vertical" :
You can’t perform that action at this time.
0 commit comments