diff --git a/src/ui/component/rewardTotal/view.jsx b/src/ui/component/rewardTotal/view.jsx index 903be9bc9..1b49194a2 100644 --- a/src/ui/component/rewardTotal/view.jsx +++ b/src/ui/component/rewardTotal/view.jsx @@ -10,7 +10,8 @@ type Props = { function RewardTotal(props: Props) { const { rewards } = props; const rewardTotal = rewards.reduce((acc, val) => acc + val.reward_amount, 0); - const total = useTween(rewardTotal * 40); + const modifier = rewardTotal > 500 ? 1 : 15; // used to tweak the reward count speed + const total = useTween(rewardTotal * modifier); const integer = Math.round(total * rewardTotal); return ( diff --git a/src/ui/page/file/view.jsx b/src/ui/page/file/view.jsx index 5288e7d64..e3117f97a 100644 --- a/src/ui/page/file/view.jsx +++ b/src/ui/page/file/view.jsx @@ -272,10 +272,7 @@ class FilePage extends React.Component { -
+
@@ -293,8 +290,6 @@ class FilePage extends React.Component {
-
-
{__('Comments')}
diff --git a/src/ui/page/wallet/view.jsx b/src/ui/page/wallet/view.jsx index 4708accdf..a51edc049 100644 --- a/src/ui/page/wallet/view.jsx +++ b/src/ui/page/wallet/view.jsx @@ -8,7 +8,7 @@ import UnsupportedOnWeb from 'component/common/unsupported-on-web'; const WalletPage = () => ( - {IS_WEB && } +
diff --git a/src/ui/scss/component/_button.scss b/src/ui/scss/component/_button.scss index 519a0f84f..f0d8f22ca 100644 --- a/src/ui/scss/component/_button.scss +++ b/src/ui/scss/component/_button.scss @@ -19,11 +19,6 @@ } .button--primary { - &:not(:hover) { - // fix this in components repo - background-color: $lbry-teal-4; - } - &:hover { background-color: $lbry-teal-3; } diff --git a/src/ui/scss/component/_file-properties.scss b/src/ui/scss/component/_file-properties.scss index 77dc7dcce..17ed0c04a 100644 --- a/src/ui/scss/component/_file-properties.scss +++ b/src/ui/scss/component/_file-properties.scss @@ -23,7 +23,7 @@ .file-properties--large { flex-wrap: wrap; font-size: 18px; - margin: var(--spacing-small) 0; + margin: var(--spacing-medium) 0; & > * { margin-top: var(--spacing-small); diff --git a/src/ui/scss/component/_media.scss b/src/ui/scss/component/_media.scss index bd72a3620..48c85fc26 100644 --- a/src/ui/scss/component/_media.scss +++ b/src/ui/scss/component/_media.scss @@ -179,7 +179,7 @@ } .media__info--large { - // border-top: 1px solid $lbry-gray-1; + border-top: 1px solid $lbry-gray-1; margin-top: var(--spacing-medium); html[data-mode='dark'] & { diff --git a/static/locales/en.json b/static/locales/en.json index 89c4925f4..2c0f875b0 100644 --- a/static/locales/en.json +++ b/static/locales/en.json @@ -292,7 +292,6 @@ "Comment": "Comment", "Your comment": "Your comment", "Post": "Post", -<<<<<<< HEAD "No modifier provided after separator %s.": "No modifier provided after separator %s.", "Incompatible Daemon": "Incompatible Daemon", "Incompatible daemon running": "Incompatible daemon running", @@ -309,9 +308,6 @@ "Your version is out of date and may be unreliable or insecure.": "Your version is out of date and may be unreliable or insecure.", "Want to know what has changed?": "Want to know what has changed?", "release notes": "release notes", -======= - "You haven't downloaded anything from LBRY yet.": "You haven't downloaded anything from LBRY yet.", ->>>>>>> ca0fd40a... add placeholders to claim previews "Read the FAQ": "Read the FAQ", "Our FAQ answers many common questions.": "Our FAQ answers many common questions.", "Get Live Help": "Get Live Help",