Skip to content

Commit

Permalink
fixes positioning of image circled in useCase section
Browse files Browse the repository at this point in the history
  • Loading branch information
rep0x committed Apr 6, 2019
1 parent f2bfebb commit 63cf974
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Components/Sections/UseCase.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default class extends Component {
let imageElement
if (image_type === 'circle') {
imageElement =
<Layout.Col sm="24" md="12" lg="12" className="flex-end just-center-mobile">
<Layout.Col sm="24" md="12" lg="12" className={`${image_right ? 'flex-end' : ''} just-center-mobile`}>
<Fade top>
<img alt={title} src={image_path} className="circle"/>
</Fade>
Expand All @@ -56,7 +56,7 @@ export default class extends Component {
imageElement =
<Layout.Col sm="24" md="16" lg="12">
<span style={{opacity: 0}}>a</span>
<Fade top>
<Fade bottom>
<img
alt={title}
src={image_path}
Expand All @@ -68,7 +68,7 @@ export default class extends Component {
imageElement =
<Layout.Col sm="24" md="12" lg="12">
<span style={{opacity: 0}}>a</span>
<Fade top>
<Fade bottom>
<img
alt={title}
src={image_path}
Expand Down

0 comments on commit 63cf974

Please sign in to comment.