Skip to content

Commit 0c945ae

Browse files
authoredFeb 13, 2017
Merge pull request #25 from michaeldye/feature/improve_dash_style_pad
improved padding on dash and main pages
2 parents 86e678a + 935b9cc commit 0c945ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/components/Dashboard/presenter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ class Dashboard extends Component {
220220
<br />
221221
<List.Description><strong>Archived Agreements</strong>: {it.agreements.archived.length}</List.Description>
222222
{newestArch !== null ?
223-
<div>
223+
<div style={{"paddingLeft": "2%"}}>
224224
<List.Description><strong>Terminated Time</strong>: {prettyTime(newestArch.agreement_terminated_time)}, <strong>Terminated Reason</strong>: {newestArch.terminated_reason}, <strong>Terminated Description</strong>: {newestArch.terminated_description}</List.Description>
225225
</div>
226226
:

‎src/components/Main/presenter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class Main extends Component {
3939
</Container>
4040

4141
<br />
42-
<div style={{"padding": "8%", "padding-top": "2%"}}>
42+
<div style={{"padding": "8%", "paddingTop": "2%"}}>
4343
{children}
4444
</div>
4545
</section>

0 commit comments

Comments
 (0)
Please sign in to comment.