diff --git a/client/apps/portal-administration/src/pages/LandingPage.tsx b/client/apps/portal-administration/src/pages/LandingPage.tsx index 2956a70b..75a7e9f5 100644 --- a/client/apps/portal-administration/src/pages/LandingPage.tsx +++ b/client/apps/portal-administration/src/pages/LandingPage.tsx @@ -16,9 +16,9 @@ export const Styles = { width: 100%; height: calc(100vh - var(--header-height, 48px)); background-color: #dee5e7; - overflow: hidden; display: flex; justify-content: center; + overflow-y: auto; `, ContentWrapper: styled.main` display: flex; @@ -26,11 +26,20 @@ export const Styles = { gap: 1rem; padding-top: 5rem; `, + Section: styled.span` width: 46vw; + + @media only screen and (max-width: 1920px) { + width: 68vw; + } + display: flex; flex-direction: column; gap: 0.5rem; + &:last-child { + padding-bottom: 5rem; + } `, Content: styled.section` padding: 0rem 2rem; diff --git a/client/apps/portal-administration/src/pages/PortalsList.tsx b/client/apps/portal-administration/src/pages/PortalsList.tsx index 9d4d9009..9460a2e6 100644 --- a/client/apps/portal-administration/src/pages/PortalsList.tsx +++ b/client/apps/portal-administration/src/pages/PortalsList.tsx @@ -2,7 +2,6 @@ import { styled } from 'styled-components'; import { Loading } from '../components/Loading'; import { PortalTable } from '../components/Portals/PortalTable'; import { usePortalsQuery } from '../hooks/use-portals-query'; -import { useAccess } from '../hooks/use-access'; const Style = { Wrapper: styled.div`