computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
333 B
20 lines
333 B
5 years ago
|
import styled from 'styled-components';
|
||
|
|
||
|
const P = styled.p`
|
||
|
color: inherit;
|
||
|
font-size: 16px;
|
||
|
font-weight: 400;
|
||
5 years ago
|
line-height: 27px;
|
||
5 years ago
|
margin: 16px 0;
|
||
5 years ago
|
|
||
|
img + em {
|
||
|
text-align: center;
|
||
|
color: #666666;
|
||
|
font-style: normal;
|
||
|
font-size: 14px;
|
||
|
margin: 5px 0 10px;
|
||
|
display: block;
|
||
|
}
|
||
5 years ago
|
`;
|
||
|
|
||
|
export default P;
|