mirror of
https://github.com/strapi/strapi.git
synced 2025-12-27 15:13:21 +00:00
design review
Signed-off-by: Ky <virginie.ky@gmail.com>
This commit is contained in:
parent
490d565c07
commit
dfd277ab25
@ -18,6 +18,9 @@ const StyledListRow = styled(Row)`
|
||||
&:first-of-type {
|
||||
width: 65px;
|
||||
padding-left: 30px;
|
||||
> div {
|
||||
height: 16px;
|
||||
}
|
||||
}
|
||||
&:nth-of-type(2) {
|
||||
max-width: 158px;
|
||||
|
||||
@ -2,7 +2,7 @@ import { ModalBody } from 'reactstrap';
|
||||
import styled from 'styled-components';
|
||||
|
||||
const Wrapper = styled(ModalBody)`
|
||||
padding: 2.2rem 1.5rem 0 1.5rem;
|
||||
padding: 2.2rem 1.5rem 0.1rem 1.5rem;
|
||||
`;
|
||||
|
||||
export default Wrapper;
|
||||
|
||||
@ -109,9 +109,6 @@ export { default as generateSearchFromFilters } from './utils/generateSearchFrom
|
||||
export { default as generateSearchFromObject } from './utils/generateSearchFromObject';
|
||||
export { default as prefixFileUrlWithBackendUrl } from './utils/prefixFileUrlWithBackendUrl';
|
||||
|
||||
// Test Utils
|
||||
export { default as renderWithIntl } from './testUtils/renderWithIntl';
|
||||
|
||||
// SVGS
|
||||
export { default as LayoutIcon } from './svgs/Layout';
|
||||
export { default as ClearIcon } from './svgs/Clear';
|
||||
|
||||
@ -255,7 +255,7 @@ const EditSettingsView = ({
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="col-6" key={meta} style={{ marginBottom: 4 }}>
|
||||
<div className="col-6" key={meta}>
|
||||
<FormattedMessage
|
||||
id={`${pluginId}.containers.SettingPage.editSettings.entry.title.description`}
|
||||
>
|
||||
|
||||
@ -9,7 +9,6 @@ const Wrapper = styled.div`
|
||||
border: 1px solid #e3e9f3;
|
||||
border-radius: 2px;
|
||||
> div {
|
||||
height: 100%;
|
||||
margin: auto;
|
||||
> label {
|
||||
margin-left: 0;
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import styled from 'styled-components';
|
||||
|
||||
const SectionTitleWrapper = styled.div`
|
||||
margin-bottom: 17px;
|
||||
margin-bottom: 20px;
|
||||
`;
|
||||
|
||||
export default SectionTitleWrapper;
|
||||
|
||||
@ -7,7 +7,8 @@
|
||||
import styled from 'styled-components';
|
||||
|
||||
const Wrapper = styled.div`
|
||||
padding: 27px 10px;
|
||||
padding: 25px 10px;
|
||||
margin-top: 33px;
|
||||
border-radius: ${({ theme }) => theme.main.sizes.borderRadius};
|
||||
box-shadow: 0 2px 4px ${({ theme }) => theme.main.colors.darkGrey};
|
||||
background: ${({ theme }) => theme.main.colors.white};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user