computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
18 lines
303 B
18 lines
303 B
5 years ago
|
import styled from 'styled-components';
|
||
|
|
||
|
export const Header = styled.div`
|
||
|
text-align: center;
|
||
|
padding: 45px 30px 30px;
|
||
|
`;
|
||
|
|
||
|
export const Title = styled.h1`
|
||
|
font-weight: 700;
|
||
|
margin-bottom: 12px;
|
||
|
font-size: 48px;
|
||
|
`;
|
||
|
|
||
|
export const Description = styled.p`
|
||
|
font-size: 16px;
|
||
|
color: #444444;
|
||
|
`;
|