mirror of
https://github.com/strapi/strapi.git
synced 2025-08-09 09:14:49 +00:00

Created OLD folder. Fix load plugin when no Initializer is provided. Signed-off-by: soupette <cyril.lpz@gmail.com>
38 lines
590 B
JavaScript
38 lines
590 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
margin-top: 9px;
|
|
padding: 0;
|
|
padding-bottom: 7px;
|
|
|
|
> div:first-child {
|
|
margin: 0;
|
|
}
|
|
|
|
.list {
|
|
width: 100%;
|
|
padding: 0 !important;
|
|
list-style: none;
|
|
margin-bottom: 0;
|
|
> li:nth-child(2) {
|
|
height: 57px;
|
|
> div {
|
|
line-height: 54px !important;
|
|
}
|
|
}
|
|
> li {
|
|
width: 100%;
|
|
margin-top: 0;
|
|
}
|
|
|
|
> li:last-child {
|
|
> div {
|
|
border-bottom: 0 !important;
|
|
}
|
|
box-shadow: 0 2px 4px #e3e9f3;
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default Wrapper;
|