diff --git a/src/renderer/component/fileTile/view.jsx b/src/renderer/component/fileTile/view.jsx index 8832636fb..c053ff305 100644 --- a/src/renderer/component/fileTile/view.jsx +++ b/src/renderer/component/fileTile/view.jsx @@ -123,8 +123,10 @@ class FileTile extends React.PureComponent { 'card__subtitle--x-small': small, })} > - {showUri ? uri : channel || __('Anonymous')} - {isRewardContent && } + + {showUri ? uri : channel || __('Anonymous')} + + {isRewardContent && } {showLocal && isDownloaded && } diff --git a/src/renderer/scss/component/_file-list.scss b/src/renderer/scss/component/_file-list.scss index b4ed9e7ac..c5440a995 100644 --- a/src/renderer/scss/component/_file-list.scss +++ b/src/renderer/scss/component/_file-list.scss @@ -31,9 +31,16 @@ .card__subtitle { line-height: 1; + display: flex; + align-items: center; + // justify-content: space-between; } } +.file-tile__channel { + padding-right: $spacing-width * 1/4; +} + .file-tile.file-tile--small { padding-top: $spacing-vertical * 2/3;