moar improvements

This commit is contained in:
Sean Yesmunt 2020-05-26 14:42:44 -04:00
parent 1210a03c3f
commit 68e687ee6e
3 changed files with 2 additions and 3 deletions

View file

@ -30,7 +30,7 @@ function FileViewerEmbeddedTitle(props: Props) {
<Button label={title} button="link" className="file-viewer__embedded-title" {...contentLinkProps} /> <Button label={title} button="link" className="file-viewer__embedded-title" {...contentLinkProps} />
<div className="file-viewer__embedded-info"> <div className="file-viewer__embedded-info">
<Button className="file-viewer__overlay-logo" icon={ICONS.LBRY} {...lbryLinkProps} /> <Button className="file-viewer__overlay-logo" icon={ICONS.LBRY} {...lbryLinkProps} />
<FilePrice uri={uri} /> {isInApp && <FilePrice uri={uri} />}
</div> </div>
</div> </div>
); );

View file

@ -58,7 +58,7 @@ const EmbedWrapperPage = (props: Props) => {
<div> <div>
<h1>{__('Paid content cannot be embedded.')}</h1> <h1>{__('Paid content cannot be embedded.')}</h1>
<div className="section__actions--centered"> <div className="section__actions--centered">
<Button label={__('View on lbry.tv')} button="primary" href={contentLink} /> <Button label={__('Watch on lbry.tv')} button="primary" href={contentLink} />
</div> </div>
</div> </div>
)} )}

View file

@ -238,7 +238,6 @@
max-width: 75%; max-width: 75%;
@media (max-width: $breakpoint-small) { @media (max-width: $breakpoint-small) {
max-width: 50%;
font-size: var(--font-small); font-size: var(--font-small);
} }
} }