mirror of
https://github.com/strapi/strapi.git
synced 2025-08-12 10:48:12 +00:00
15 lines
193 B
JavaScript
15 lines
193 B
JavaScript
![]() |
import styled from 'styled-components';
|
||
|
|
||
|
const P = styled.p`
|
||
|
margin-top: 10px;
|
||
|
text-align: center;
|
||
|
font-size: 13px;
|
||
|
color: #9ea7b8;
|
||
|
|
||
|
u {
|
||
|
color: #1c5de7;
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
export default P;
|