mirror of
https://github.com/strapi/strapi.git
synced 2025-08-10 01:38:10 +00:00

Created OLD folder. Fix load plugin when no Initializer is provided. Signed-off-by: soupette <cyril.lpz@gmail.com>
21 lines
377 B
JavaScript
21 lines
377 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const EmptyLi = styled.li`
|
|
height: 54px;
|
|
background-color: #fff;
|
|
padding-top: 5px;
|
|
cursor: pointer;
|
|
> div {
|
|
display: flex;
|
|
width: 100%;
|
|
justify-content: center;
|
|
padding-top: 1px;
|
|
text-align: center;
|
|
font-size: 12px;
|
|
line-height: 54px;
|
|
text-transform: uppercase;
|
|
}
|
|
`;
|
|
|
|
export default EmptyLi;
|