style: Anpassungen an StartView und Styles

This commit is contained in:
2026-03-19 17:19:16 +01:00
parent 44c53bcd6c
commit 5ccfac4cf2
2 changed files with 15 additions and 0 deletions

View File

@@ -163,6 +163,15 @@ vaadin-app-layout::part(content) {
min-height: 100dvh;
}
.landing-view {
padding: 20px;
gap: 20px;
}
body:has(.landing-view) {
background: #ffffff;
}
.data-view,
.dashboard-view,
.form-page,

View File

@@ -53,6 +53,12 @@ public class StartView extends VerticalLayout implements BeforeEnterObserver, Ha
// Footer
add(createFooter());
// Unterer Abstand
Div bottomSpacer = new Div();
bottomSpacer.setHeight("20px");
bottomSpacer.setMinHeight("20px");
add(bottomSpacer);
}
@Override