mirror of
https://github.com/strapi/strapi.git
synced 2025-09-28 01:40:11 +00:00
34 lines
533 B
JavaScript
34 lines
533 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Container = styled.div`
|
|
min-width: 200px;
|
|
font-size: 1.3rem;
|
|
padding-bottom: 26px;
|
|
|
|
.labelFile {
|
|
margin-bottom: 9px;
|
|
}
|
|
|
|
.labelNumber {
|
|
font-weight: 500;
|
|
}
|
|
|
|
&.bordered {
|
|
.editorWrapper {
|
|
border-color: red;
|
|
}
|
|
}
|
|
> div + p {
|
|
width 100%;
|
|
padding-top: 14px;
|
|
font-size: 1.2rem;
|
|
line-height: normal;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
margin-bottom: -11px;
|
|
}
|
|
`;
|
|
|
|
export default Container;
|