better channel actions alignment

This commit is contained in:
Sean Yesmunt 2018-10-04 00:39:49 -04:00
parent 36d3235a5f
commit ce9a3f0ff4
3 changed files with 7 additions and 8 deletions

View file

@ -85,12 +85,12 @@ class ChannelPage extends React.PureComponent<Props> {
{name}
{fetching && <BusyIndicator />}
</h1>
<div className="card__actions card__actions--no-margin">
<SubscribeButton uri={permanentUrl} channelName={name} />
<ViewOnWebButton claimId={claimId} claimName={name} />
</div>
</section>
<section>{contentList}</section>
<div className="card__actions">
<SubscribeButton uri={permanentUrl} channelName={name} />
<ViewOnWebButton claimId={claimId} claimName={name} />
</div>
<section className="card__content">{contentList}</section>
{(!fetching || (claimsInChannel && claimsInChannel.length)) &&
totalPages > 1 && (
<FormRow verticallyCentered centered>

View file

@ -42,7 +42,7 @@ class ShowPage extends React.PureComponent<Props> {
if ((isResolvingUri && !claim) || !claim) {
const { claimName } = parseURI(uri);
innerContent = (
<Page>
<Page notContained>
<section className="card">
<h1>{claimName}</h1>
<div className="card__content">

View file

@ -217,8 +217,7 @@
}
.card__channel-info--large {
padding-top: 0;
padding-bottom: $spacing-vertical * 2/3;
padding: 0;
}
.card__content {