Skip to content
Snippets Groups Projects
Commit 98568d2e authored by Audrey Hamelers's avatar Audrey Hamelers
Browse files

style fix

parent 97a30e1c
No related branches found
No related tags found
2 merge requests!93Shared data model,!94Dev
......@@ -25,7 +25,7 @@ const SubmitComplete = ({ currentUser, cancel, manuscript, history }) => {
const done = states.indexOf('xml-complete')
const sent = states.indexOf('ncbi-ready')
return (
<Page>
<Page withHeader>
<H1>Thank you for your submission</H1>
<p>
{`Your submission is `}
......
......@@ -4,7 +4,9 @@ import { th, override } from '@pubsweet/ui-toolkit'
const Page = styled.div`
margin: 0 auto;
max-width: 1000px;
min-height: calc(100vh - (${th('gridUnit')} * 20));
min-height: calc(
100vh - (${th('gridUnit')} * ${props => (props.withHeader ? '28' : '20')})
);
padding: ${th('gridUnit')} calc(${th('gridUnit')} * 4)
calc(${th('gridUnit')} * 4);
box-sizing: border-box;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment