Files
jellyfin-audio-player/src/components/Typography.ts

14 lines
290 B
TypeScript
Raw Normal View History

2020-06-21 13:02:23 +02:00
import styled from 'styled-components/native';
import Text from './Text';
2020-06-21 13:02:23 +02:00
export const Header = styled(Text)`
2020-06-21 13:02:23 +02:00
margin: 24px 0 12px 0;
font-size: 36px;
font-weight: bold;
2020-08-28 14:17:54 +02:00
`;
export const SubHeader = styled(Text)`
2020-08-28 14:17:54 +02:00
font-size: 24px;
margin: 12px 0;
2022-01-01 21:55:32 +01:00
font-weight: 500;
2020-06-21 13:02:23 +02:00
`;