Skip to content
Snippets Groups Projects
Commit cdeae73d authored by Bogdan Cochior's avatar Bogdan Cochior
Browse files

style(dashboard): resposiveness improvements

n
parent 8d81f5b2
No related branches found
No related tags found
1 merge request!6Agree/Decline to work on a manuscript
......@@ -38,6 +38,7 @@ const Header = styled.div`
display: flex;
flex-direction: row;
margin-bottom: ${th('subGridUnit')};
flex-wrap: wrap;
`
const BreadCrumbs = styled.div`
......
......@@ -54,7 +54,11 @@ const submitManuscript = (
),
)
.then(() => {
history.push(redirectPath, { project: project.id, version: version.id })
history.push(redirectPath, {
project: project.id,
customId: project.customId,
version: version.id,
})
})
.catch(error => {
if (error.validationErrors) {
......
......@@ -279,7 +279,7 @@ const LeftDetails = styled.div`
justify-content: flex-start;
align-items: center;
flex: ${({ flex }) => flex || 1};
max-width: 75%;
flex-wrap: wrap;
`
const RightDetails = styled.div`
......@@ -288,7 +288,7 @@ const RightDetails = styled.div`
justify-content: flex-end;
align-items: center;
flex: ${({ flex }) => flex || 1};
max-width: 75%;
flex-wrap: wrap;
`
const DetailsView = styled.div`
......@@ -355,6 +355,7 @@ const Top = styled.div`
padding: 10px;
width: 100%;
box-sizing: border-box;
flex-wrap: wrap;
`
const Bottom = styled.div`
display: flex;
......@@ -363,6 +364,7 @@ const Bottom = styled.div`
width: 100%;
box-sizing: border-box;
justify-content: space-between;
flex-wrap: wrap;
`
const ManuscriptType = styled.div`
......
......@@ -34,9 +34,9 @@ const ConfirmationPage = ({
<a
href={`/projects/${state.project}/versions/${
state.version
}/manuscript`}
}/details`}
>
{state.project}
{state.customId}
</a>
</b>.
</p>
......
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