Skip to content

Commit

Permalink
Fixing the loader position.
Browse files Browse the repository at this point in the history
  • Loading branch information
mansoor-sajjad committed Oct 17, 2023
1 parent 58bcf50 commit f709460
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions src/screens/providers/components/ChouetteAllJobs.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ class ChouetteAllJobs extends React.Component {
)}
</div>
{requestingJobs ? (
<div style={{ float: 'right', position: 'absolute', right: 40 }}>
<div style={{ margin: '0px 20px 10px' }}>
<Loader color="#26A65B" size="23px" />
</div>
) : null}
Expand Down Expand Up @@ -331,7 +331,9 @@ class ChouetteAllJobs extends React.Component {
</Row>
) : (
<Row>
<p>No chouette jobs found for your search criterias.</p>
<p style={{ marginLeft: '20px' }}>
No chouette jobs found for your search criterias.
</p>
</Row>
)}
</Container>
Expand Down
6 changes: 4 additions & 2 deletions src/screens/providers/components/ChouetteJobDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ class ChouetteJobDetails extends React.Component {
)}
</Col>
{requestingJobs ? (
<div style={{ float: 'right', position: 'absolute', right: 40 }}>
<div style={{ margin: '0px 20px 10px' }}>
<Loader color="#26A65B" size="23px" />
</div>
) : null}
Expand Down Expand Up @@ -337,7 +337,9 @@ class ChouetteJobDetails extends React.Component {
</Row>
) : (
<Row>
<p>No chouette jobs found for your search criterias.</p>
<p style={{ marginLeft: '20px' }}>
No chouette jobs found for your search criterias.
</p>
</Row>
)}
</Container>
Expand Down

0 comments on commit f709460

Please sign in to comment.