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

gitify-app / gitify / 12949101688

24 Jan 2025 11:53AM UTC coverage: 86.779%. Remained the same
12949101688

Pull #1772

github

web-flow
Merge f497a0501 into ff1b12e6b
Pull Request #1772: chore(config): Switch to Tailwind v4 CSS config

615 of 701 branches covered (87.73%)

Branch coverage included in aggregate %.

1702 of 1969 relevant lines covered (86.44%)

23.36 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 (
38✔
14
    <Stack
15
      direction="vertical"
16
      align="center"
17
      justify="center"
18
      padding="spacious"
19
      className={fullHeight && 'h-screen'}
32✔
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