move edit button on channel pages

This commit is contained in:
Sean Yesmunt 2020-05-04 11:38:35 -04:00
parent 1b830f74a1
commit 85ac7c5aac
2 changed files with 14 additions and 9 deletions

View file

@ -236,20 +236,20 @@ function ChannelPage(props: Props) {
<ChannelThumbnail className="channel__thumbnail--channel-page" uri={uri} thumbnailPreview={thumbPreview} />
)}
<h1 className="channel__title">{title || '@' + channelName}</h1>
{channelIsMine && !editing && (
<Button
button="alt"
title={__('Edit')}
onClick={() => setEditing(!editing)}
icon={ICONS.EDIT}
iconSize={28}
/>
)}
<div className="channel__meta">
<span>
{subCount} {subCount !== 1 ? __('Followers') : __('Follower')}
<HelpLink href="https://lbry.com/faq/views" />
</span>
{channelIsMine && !editing && (
<Button
button="alt"
title={__('Edit')}
onClick={() => setEditing(!editing)}
icon={ICONS.EDIT}
iconSize={18}
/>
)}
</div>
</div>
</header>

View file

@ -137,6 +137,11 @@ $metadata-z-index: 1;
.channel__meta {
display: flex;
justify-content: space-between;
align-items: flex-end;
.button {
height: auto;
}
}
.channel__image--blurred {