Files
developer-roadmap/components/page-header/style.js

23 lines
351 B
JavaScript
Raw Normal View History

2019-11-08 16:47:21 +04:00
import styled from 'styled-components';
export const HeaderWrap = styled.div`
text-align: center;
padding: 45px 30px;
`;
export const Title = styled.h1`
font-size: 48px;
font-weight: 700;
margin-bottom: 12px;
2019-11-08 16:47:21 +04:00
`;
export const Subtitle = styled.p`
font-size: 16px;
color: #444;
a {
color: inherit;
font-weight: 700;
}
`;