design review

Signed-off-by: Ky <virginie.ky@gmail.com>
This commit is contained in:
Ky 2020-04-28 16:58:13 +02:00
parent 490d565c07
commit dfd277ab25
7 changed files with 8 additions and 8 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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';

View File

@ -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`}
>

View File

@ -9,7 +9,6 @@ const Wrapper = styled.div`
border: 1px solid #e3e9f3;
border-radius: 2px;
> div {
height: 100%;
margin: auto;
> label {
margin-left: 0;

View File

@ -1,7 +1,7 @@
import styled from 'styled-components';
const SectionTitleWrapper = styled.div`
margin-bottom: 17px;
margin-bottom: 20px;
`;
export default SectionTitleWrapper;

View File

@ -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};