Skip to content

Commit

Permalink
change position of version text
Browse files Browse the repository at this point in the history
  • Loading branch information
PavelOlkhovoi committed Sep 19, 2024
1 parent 76d2643 commit 510ddd7
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions apps/verdis/online/src/app/components/VerdisOnlineLanding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ const VerdisOnlineLanding = () => {
<div style={{ ...landingStyle, paddingTop: "1.5rem" }}>
<Container>
<Row className="show-grid">
<Col xs={7} md={7}>
<Col xs={12} md={12}>
<h1 style={{ color: "white" }}>
<img alt="" width={180} src="/images/wuppertal-white.svg" />
</h1>
Expand Down Expand Up @@ -214,11 +214,6 @@ const VerdisOnlineLanding = () => {
Versiegelungsdaten | Flächenentwässerung
</h3>
</Col>
<Col xs={5} md={5}>
<VersionNumberLoginPage
version={getApplicationVersion(versionData)}
/>
</Col>
</Row>

<Row className="show-grid">
Expand Down Expand Up @@ -287,6 +282,23 @@ const VerdisOnlineLanding = () => {
</Col>
</Row>
</Container>
<div
style={{
position: "absolute",
bottom: 0,
right: 0,
color: "white",
fontSize: "9px",
marginLeft: "auto",
paddingRight: "4px",
paddingBottom: "4px",
}}
>
<VersionNumberLoginPage
version={getApplicationVersion(versionData)}
fonntSize="9px"
/>
</div>
</div>
</div>
);
Expand Down

0 comments on commit 510ddd7

Please sign in to comment.