diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9c4000af9..3ad36a747 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -10,10 +10,11 @@ However, for those individuals who want a bit more guidance on the best way to c * [Here](https://github.com/lbryio/lbry-desktop/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22+no%3Aassignee) is a list of help wanted issues. -* Comment on an issue to let us know if you are going to work on it, don't take an issue that - someone reserved less than 3 days ago. +* Comment on an issue to let us know if you are going to work on it, don't take an issue that someone reserved less than 3 days ago. * Submit a pull request and get paid in LBC. * Don't hesitate to contact us with any questions or comments. +* [Check out this video for a quickstart guide to running and developing the desktop app](https://spee.ch/7da73fc508ffc4ff8b2711e3c3950110430b0c5f/LBRYAppDesign.mp4). + ## Choose an Issue diff --git a/src/renderer/component/publishForm/view.jsx b/src/renderer/component/publishForm/view.jsx index a4b6f0b56..91b2300b2 100644 --- a/src/renderer/component/publishForm/view.jsx +++ b/src/renderer/component/publishForm/view.jsx @@ -354,23 +354,25 @@ class PublishForm extends React.PureComponent { return (
-
{__('Content')}
+
+ {__('Content')} + {(filePath || !!editingURI) && ( +
+
+ )} +
{isStillEditing ? __('Editing a claim') : __('What are you publishing?')}{' '} {__('Read our')}{' '}
- {(filePath || !!editingURI) && ( -
-
- )}
{!!isStillEditing && diff --git a/src/renderer/scss/component/_card.scss b/src/renderer/scss/component/_card.scss index adacf7c67..62371173c 100644 --- a/src/renderer/scss/component/_card.scss +++ b/src/renderer/scss/component/_card.scss @@ -36,24 +36,6 @@ cursor: pointer; } -.card__media { - background-color: $lbry-gray-3; - background-position: 50% 50%; - background-repeat: no-repeat; - background-size: cover; -} - -.card__media--no-img { - align-items: center; - display: flex; - justify-content: center; - position: relative; -} - -.card__media--nsfw { - background-color: $lbry-red-5; -} - .card--pending { opacity: 0.5; } @@ -85,6 +67,24 @@ } } +.card__media { + background-color: $lbry-gray-3; + background-position: 50% 50%; + background-repeat: no-repeat; + background-size: cover; +} + +.card__media--no-img { + align-items: center; + display: flex; + justify-content: center; + position: relative; +} + +.card__media--nsfw { + background-color: $lbry-red-5; +} + .card__actions { display: flex; margin-top: $spacing-vertical * 2/3; @@ -227,12 +227,12 @@ .card__subtitle { color: $lbry-gray-5; - font-size: 1em; - line-height: 1em; + font-size: .9em; + line-height: .9em; padding-top: $spacing-vertical * 1/3; @media (min-width: $large-breakpoint) { - font-size: 1.2em; + font-size: 1em; } } @@ -277,11 +277,11 @@ .card__title--file-card { // FileCard is slightly different where the title is only slightly bigger than the subtitle // Slightly bigger than 2 lines for consistent channel placement - font-size: 1.1em; + font-size: 1em; height: 3.3em; @media only screen and (min-width: $large-breakpoint) { - font-size: 1.3em; + font-size: 1.1em; } }