Skip to content
Snippets Groups Projects

Notify sponsors about ending roles

Merged Andreas Ellewsen requested to merge GREG-162-notify-role-ending into master
Files
8
@@ -30,7 +30,18 @@ function getHeaderLogo() {
/>
)
case 'uib':
return <></>
if (i18n.language === 'en') {
return (
<UiBLogoEn
style={{ minHeight: '7rem', minWidth: '10rem', maxWidth: '30rem' }}
/>
)
}
return (
<UiBLogoNo
style={{ minHeight: '7rem', minWidth: '10rem', maxWidth: '30rem' }}
/>
)
default:
return <></>
}
@@ -54,18 +65,8 @@ function getFooterLogo() {
/>
)
case 'uib':
if (i18n.language === 'en') {
return (
<UiBLogoEn
style={{ minHeight: '7rem', minWidth: '10rem', maxWidth: '30rem' }}
/>
)
}
return (
<UiBLogoNo
style={{ minHeight: '7rem', minWidth: '10rem', maxWidth: '30rem' }}
/>
)
// No footer logo defined for UiB
return <></>
default:
return <></>
}
Loading