mirror of
https://github.com/strapi/strapi.git
synced 2025-08-09 01:07:27 +00:00

Created OLD folder. Fix load plugin when no Initializer is provided. Signed-off-by: soupette <cyril.lpz@gmail.com>
17 lines
306 B
JavaScript
17 lines
306 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const EntriesWrapper = styled.div`
|
|
display: flex;
|
|
height: 43px;
|
|
width: 100%;
|
|
padding-top: 16px;
|
|
justify-content: space-between;
|
|
`;
|
|
|
|
const Wrapper = styled.div`
|
|
padding-right: 20px;
|
|
font-family: Lato !important;
|
|
`;
|
|
|
|
export { EntriesWrapper, Wrapper };
|