• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

gitify-app / gitify / 12916647965

22 Jan 2025 08:36PM UTC coverage: 87.021% (-0.04%) from 87.059%
12916647965

Pull #1753

github

web-flow
Merge 3758941a5 into 699564b2a
Pull Request #1753: refactor: notification footer

588 of 662 branches covered (88.82%)

Branch coverage included in aggregate %.

1658 of 1919 relevant lines covered (86.4%)

22.4 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

83.33
/src/renderer/components/layout/Centered.tsx
1
import { Stack } from '@primer/react';
12✔
2
import type { FC, ReactNode } from 'react';
3

4
interface ICentered {
5
  children: ReactNode;
6
  fullHeight?: boolean;
7
}
8

9
export const Centered: FC<ICentered> = ({
12✔
10
  fullHeight = true,
×
11
  ...props
12
}: ICentered) => {
13
  return (
36✔
14
    <Stack
15
      direction="vertical"
16
      align="center"
17
      justify="center"
18
      padding="spacious"
19
      className={fullHeight && 'min-h-screen'}
30✔
20
    >
21
      {props.children}
22
    </Stack>
23
  );
24
};
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc