style: Anpassungen an StartView und Styles
This commit is contained in:
@@ -163,6 +163,15 @@ vaadin-app-layout::part(content) {
|
|||||||
min-height: 100dvh;
|
min-height: 100dvh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.landing-view {
|
||||||
|
padding: 20px;
|
||||||
|
gap: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body:has(.landing-view) {
|
||||||
|
background: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
.data-view,
|
.data-view,
|
||||||
.dashboard-view,
|
.dashboard-view,
|
||||||
.form-page,
|
.form-page,
|
||||||
|
|||||||
@@ -53,6 +53,12 @@ public class StartView extends VerticalLayout implements BeforeEnterObserver, Ha
|
|||||||
|
|
||||||
// Footer
|
// Footer
|
||||||
add(createFooter());
|
add(createFooter());
|
||||||
|
|
||||||
|
// Unterer Abstand
|
||||||
|
Div bottomSpacer = new Div();
|
||||||
|
bottomSpacer.setHeight("20px");
|
||||||
|
bottomSpacer.setMinHeight("20px");
|
||||||
|
add(bottomSpacer);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user