diff --git a/ui/page/publish/view.jsx b/ui/page/publish/view.jsx index a80a499c5..3cd94f309 100644 --- a/ui/page/publish/view.jsx +++ b/ui/page/publish/view.jsx @@ -23,35 +23,40 @@ function PublishPage(props: Props) { return ( - {balance === 0 && ( + {balance === 0 ? ( - -

- {__( - 'LBRY uses a blockchain, which is a fancy way of saying that users (you) are in control of your data.' - )} -

-

- {__('Because of the blockchain, some actions require LBRY credits')} ( - - ). -

-

- {' '} - {__( - 'allows you to do some neat things, like paying your favorite creators for their content. And no company can stop you.' - )} -

-
- } - /> - +
+ +

+ {__( + 'LBRY uses a blockchain, which is a fancy way of saying that users (you) are in control of your data.' + )} +

+

+ {__('Because of the blockchain, some actions require LBRY credits')} ( + + ). +

+

+ {' '} + {__( + 'allows you to do some neat things, like paying your favorite creators for their content. And no company can stop you.' + )} +

+ + } + /> +
+
+ +
+ ) : ( + )} -
); } diff --git a/ui/scss/component/_card.scss b/ui/scss/component/_card.scss index aa6e71dca..8111a57b4 100644 --- a/ui/scss/component/_card.scss +++ b/ui/scss/component/_card.scss @@ -201,9 +201,7 @@ .card__body { padding: var(--spacing-large); border-top: 1px solid var(--color-border); - &:not(.card__body--no-title) { - padding-top: 0; - } + &.card__body--table { padding: 0; border-top: 1px solid var(--color-border);