61
61
public class LoginScreen extends CssLayout {
62
62
63
63
private static final String UTF_8 = "UTF-8" ;
64
- private static final int LOGO_WIDTH = 250 ;
64
+ private static final int LOGO_WIDTH = 220 ;
65
65
private static final int CUSTOM_BRANDING_LOGO_WIDTH = 150 ;
66
66
67
67
private final Logger logger = LoggerFactory .getLogger (getClass ());
@@ -267,7 +267,7 @@ private Layout buildLoginSidebarLayout() {
267
267
sidebarHeaderLayout .addComponent (customSidebarHeaderLabel );
268
268
} else {
269
269
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 );
271
271
sidebarHeaderLayout .addComponent (img );
272
272
sidebarHeaderLayout .setComponentAlignment (img , Alignment .TOP_CENTER );
273
273
@@ -283,7 +283,7 @@ private Layout buildLoginSidebarLayout() {
283
283
+ I18nProperties .getCaption (Captions .LoginSidebar_outbreakResponse ),
284
284
ContentMode .HTML );
285
285
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 );
287
287
sidebarHeaderLayout .addComponent (missionText );
288
288
sidebarHeaderLayout .setComponentAlignment (missionText , Alignment .TOP_CENTER );
289
289
}
@@ -311,13 +311,9 @@ private Layout buildLoginSidebarLayout() {
311
311
CssStyles .style (poweredByLayout , CssStyles .VSPACE_TOP_1 );
312
312
}
313
313
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 );
321
317
322
318
if (!isCustomBranding ) {
323
319
Image imgGiz = new Image (null , new ThemeResource ("img/giz-logo.png" ));
0 commit comments