Skip to content

Commit

Permalink
#50 Move buttons to the right
Browse files Browse the repository at this point in the history
  • Loading branch information
SandraBergstrom committed Jun 28, 2023
1 parent e2fb4a1 commit 16fad58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/travelers/Traveler.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const Traveler = (props) => {
<div className={`mx-2 ${styles.WordBreak}`}>
<strong>{owner}</strong>
</div>
<div className={`text-right ${!mobile && "ml-auto"}`}>
<div className={`text-right ms-auto ${!mobile && "ml-auto"}`}>
{!mobile &&
currentUser &&
!is_owner &&
Expand All @@ -38,7 +38,7 @@ const Traveler = (props) => {
</Button>
) : (
<Button
className={`me-1 btn-sm ${btnStyles.Button} ${btnStyles.PinkOutline}`}
className={`me-1 ${btnStyles.Button} ${btnStyles.PinkOutline}`}
onClick={() => {}}
>
follow
Expand Down

0 comments on commit 16fad58

Please sign in to comment.