Skip to content

Commit

Permalink
Issue #1436 Location form in "execute sequence" steps
Browse files Browse the repository at this point in the history
  • Loading branch information
AscendFB committed Oct 8, 2019
1 parent 364c29d commit b3f3923
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion frontend/css/sequences.scss
Expand Up @@ -107,7 +107,7 @@
>.location-form {
margin: auto;
margin-top: 1rem;
width: 80%;
width: 100%;
max-width: 40rem;
background: $off_white;
label {
Expand All @@ -129,6 +129,15 @@
}
}

.execute-sequence{
position:relative;
padding: 0 15px 0 15px;
width: 50%;
@media screen and (max-width: 1075px){
width: 100%;
}
}

.sequence,
.regimen {
width: 100%;
Expand Down
4 changes: 2 additions & 2 deletions frontend/sequences/step_tiles/tile_execute.tsx
Expand Up @@ -100,7 +100,7 @@ export class RefactoredExecuteBlock
confirmStepDeletion={this.props.confirmStepDeletion} />
<StepContent className={className}>
<Row>
<Col xs={6}>
<Col className="execute-sequence">
<SequenceSelectBox
onChange={this.changeSelection}
resources={resources}
Expand All @@ -109,7 +109,7 @@ export class RefactoredExecuteBlock
</Row>
<Row>
{!!calledSequenceVariableData &&
<Col xs={6}>
<Col className="execute-sequence">
<LocalsList
bodyVariables={currentStep.body}
variableData={calledSequenceVariableData}
Expand Down

0 comments on commit b3f3923

Please sign in to comment.