src/app/components/PageLayoutWrapper/index.styles.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import { css, Theme } from '@emotion/react';

export default {
  wrapper: ({ palette }: Theme) =>
    css({
      minHeight: '100vh',
      display: 'flex',
      flexDirection: 'column',
      justifyContent: 'space-between',
      backgroundColor: palette.GHOST,
    }),
  content: css({
    flexGrow: 1,
    position: 'relative',
  }),
};