Skip to content

Commit

Permalink
fix(Toolbar): Improve spacing between button
Browse files Browse the repository at this point in the history
  • Loading branch information
cballevre committed Jul 5, 2024
1 parent f412cb8 commit d5b9a13
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/photos/ducks/albums/components/AlbumToolbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const AlbumToolbar = ({
role="toolbar"
>
{!isMobile && (
<>
<div className="u-flex u-flex-items-start u-mr-half">
<SharedRecipients
docId={album.id}
onClick={() => shareAlbum(album)}
Expand All @@ -63,7 +63,7 @@ const AlbumToolbar = ({
onClick={() => shareAlbum(album)}
docId={album.id}
/>
</>
</div>
)}
<MoreMenu actions={actions} />
</div>
Expand Down
1 change: 1 addition & 0 deletions src/photos/ducks/timeline/components/Toolbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ const Toolbar = ({ disabled = false, uploadPhotos, selectItems }) => {
<div className={styles['pho-toolbar']} role="toolbar">
{!isMobile && (
<UploadButton
className="u-mr-half"
onUpload={uploadPhotos}
disabled={disabled}
label={t('Toolbar.photo_upload')}
Expand Down

0 comments on commit d5b9a13

Please sign in to comment.