mirror of
https://github.com/strapi/strapi.git
synced 2025-08-10 09:47:46 +00:00

Created OLD folder. Fix load plugin when no Initializer is provided. Signed-off-by: soupette <cyril.lpz@gmail.com>
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;
|