diff --git a/static/app-strings.json b/static/app-strings.json index 1717c29a8..d92cf64f6 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -914,5 +914,6 @@ "This will increase the overall bid amount for %title%, which will boost its ability to be discovered while active.": "This will increase the overall bid amount for %title%, which will boost its ability to be discovered while active.", "Support %amount% LBC": "Support %amount% LBC", "You deposited %amount% LBC as a support!": "You deposited %amount% LBC as a support!", - "LBRY Link": "LBRY Link" -} + "LBRY Link": "LBRY Link", + "Publish to %uri%": "Publish to %uri%" +} \ No newline at end of file diff --git a/ui/component/common/icon-custom.jsx b/ui/component/common/icon-custom.jsx index c6b34af41..b5b6618c6 100644 --- a/ui/component/common/icon-custom.jsx +++ b/ui/component/common/icon-custom.jsx @@ -387,12 +387,9 @@ export const icons = { ), [ICONS.DOWNLOADABLE]: buildIcon( - - - - - - + + + ), }; diff --git a/ui/component/fileProperties/view.jsx b/ui/component/fileProperties/view.jsx index 286facc01..23892471d 100644 --- a/ui/component/fileProperties/view.jsx +++ b/ui/component/fileProperties/view.jsx @@ -21,11 +21,11 @@ export default function FileProperties(props: Props) { return (
- {isSubscribed && } - {!claimIsMine && downloaded && } + {isSubscribed && } + {!claimIsMine && downloaded && }
); } diff --git a/ui/scss/component/_file-properties.scss b/ui/scss/component/_file-properties.scss index 6a34ff389..c1299860d 100644 --- a/ui/scss/component/_file-properties.scss +++ b/ui/scss/component/_file-properties.scss @@ -17,6 +17,11 @@ .file-properties--small { font-size: var(--font-xsmall); + line-height: 1.2; + + & > *:not(:last-child) { + margin-right: var(--spacing-miniscule); + } } .file-properties--large {