diff --git a/src/web/components/structure/__tests__/__snapshots__/footer.jsx.snap b/src/web/components/structure/__tests__/__snapshots__/footer.jsx.snap
deleted file mode 100644
index 635b9b28f7..0000000000
--- a/src/web/components/structure/__tests__/__snapshots__/footer.jsx.snap
+++ /dev/null
@@ -1,39 +0,0 @@
-// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
-
-exports[`Footer tests > should render footer with copyright 1`] = `
-.c1 {
- color: #7F7F7F;
-}
-
-.c1:link {
- color: #7F7F7F;
-}
-
-.c0 {
- position: fixed;
- bottom: 0;
- right: 0;
- left: 0;
- padding: 2px;
- font-size: 10px;
- text-align: right;
- color: #7F7F7F;
- margin-top: 10px;
- padding-right: 5px;
- z-index: 500;
-}
-
-
-`;
diff --git a/src/web/components/structure/__tests__/footer.jsx b/src/web/components/structure/__tests__/footer.jsx
index 069fbb8eb5..fde4058b24 100644
--- a/src/web/components/structure/__tests__/footer.jsx
+++ b/src/web/components/structure/__tests__/footer.jsx
@@ -16,7 +16,6 @@ describe('Footer tests', () => {
const currentYear = date().year();
const {element} = render();
- expect(element).toMatchSnapshot();
expect(element).toHaveTextContent(
'Copyright © 2009-' +
currentYear +
diff --git a/src/web/components/structure/footer.jsx b/src/web/components/structure/footer.jsx
index 6794f34704..64bd1aa158 100644
--- a/src/web/components/structure/footer.jsx
+++ b/src/web/components/structure/footer.jsx
@@ -3,7 +3,6 @@
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
-
import React from 'react';
import styled from 'styled-components';
@@ -18,17 +17,11 @@ const Link = styled.a`
`;
const Footer = styled.footer`
- position: fixed;
- bottom: 0;
- right: 0;
- left: 0;
padding: 2px;
font-size: 10px;
- text-align: right;
+ text-align: center;
color: ${Theme.mediumGray};
margin-top: 10px;
- padding-right: 5px;
- z-index: ${Theme.Layers.aboveAll};
`;
const GreenboneFooter = () => {
diff --git a/src/web/pages/page.jsx b/src/web/pages/page.jsx
index 6871c7bf9a..529c224a76 100644
--- a/src/web/pages/page.jsx
+++ b/src/web/pages/page.jsx
@@ -32,6 +32,10 @@ const StyledLayout = styled(Layout)`
height: calc(-48px + 100vh);
`;
+const Container = styled.div`
+ flex: 1;
+`;
+
const Page = ({children}) => {
const capabilities = useLoadCapabilities();
const location = useLocation();
@@ -49,16 +53,18 @@ const Page = ({children}) => {
-
-
- {children}
-
+
+
+
+ {children}
+
+
+
-
);
};