Skip to content

Commit

Permalink
fix: pr fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggling committed Dec 10, 2024
1 parent 8a3203d commit 292258e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
11 changes: 10 additions & 1 deletion client/apps/portal-administration/src/pages/LandingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,30 @@ 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;
flex-direction: row;
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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down

0 comments on commit 292258e

Please sign in to comment.