6161public class LoginScreen extends CssLayout {
6262
6363 private static final String UTF_8 = "UTF-8" ;
64- private static final int LOGO_WIDTH = 250 ;
64+ private static final int LOGO_WIDTH = 220 ;
6565 private static final int CUSTOM_BRANDING_LOGO_WIDTH = 150 ;
6666
6767 private final Logger logger = LoggerFactory .getLogger (getClass ());
@@ -267,7 +267,7 @@ private Layout buildLoginSidebarLayout() {
267267 sidebarHeaderLayout .addComponent (customSidebarHeaderLabel );
268268 } else {
269269 Image img = new Image (null , new ThemeResource ("img/sormas-logo-big-text.png" ));
270- img .setWidth (320 , Unit .PIXELS );
270+ img .setWidth (200 , Unit .PIXELS );
271271 sidebarHeaderLayout .addComponent (img );
272272 sidebarHeaderLayout .setComponentAlignment (img , Alignment .TOP_CENTER );
273273
@@ -283,7 +283,7 @@ private Layout buildLoginSidebarLayout() {
283283 + I18nProperties .getCaption (Captions .LoginSidebar_outbreakResponse ),
284284 ContentMode .HTML );
285285 missionText .setWidth (320 , Unit .PIXELS );
286- CssStyles .style (missionText , CssStyles .H2 , CssStyles .VSPACE_TOP_NONE , CssStyles .ALIGN_CENTER );
286+ CssStyles .style (missionText , CssStyles .H3 , CssStyles .VSPACE_TOP_NONE , CssStyles .ALIGN_CENTER );
287287 sidebarHeaderLayout .addComponent (missionText );
288288 sidebarHeaderLayout .setComponentAlignment (missionText , Alignment .TOP_CENTER );
289289 }
@@ -311,13 +311,9 @@ private Layout buildLoginSidebarLayout() {
311311 CssStyles .style (poweredByLayout , CssStyles .VSPACE_TOP_1 );
312312 }
313313
314- Image imgHzi = new Image (null , new ThemeResource ("img/hzi-logo.png" ));
315- imgHzi .setWidth (isCustomBranding ? CUSTOM_BRANDING_LOGO_WIDTH : LOGO_WIDTH , Unit .PIXELS );
316- poweredByLayout .addComponent (imgHzi );
317-
318- Image imgSymeda = new Image (null , new ThemeResource ("img/vitagroup-logo.png" ));
319- imgSymeda .setWidth (isCustomBranding ? CUSTOM_BRANDING_LOGO_WIDTH : LOGO_WIDTH , Unit .PIXELS );
320- poweredByLayout .addComponent (imgSymeda );
314+ Image imgSormasFoundation = new Image (null , new ThemeResource ("img/sormas-foundation-logo.png" ));
315+ imgSormasFoundation .setWidth (isCustomBranding ? CUSTOM_BRANDING_LOGO_WIDTH : LOGO_WIDTH , Unit .PIXELS );
316+ poweredByLayout .addComponent (imgSormasFoundation );
321317
322318 if (!isCustomBranding ) {
323319 Image imgGiz = new Image (null , new ThemeResource ("img/giz-logo.png" ));
0 commit comments