Another padding adjustment on mobile

This commit is contained in:
Raphael Wickihalder 2022-06-10 08:45:42 +02:00
parent 7807bd9dd2
commit 86d311f45d
No known key found for this signature in database
GPG key ID: 05179BB92383243D
2 changed files with 12 additions and 11 deletions

View file

@ -138,7 +138,6 @@ export default function ChannelsPage(props: Props) {
{!(channelUrls && channelUrls.length) && ( {!(channelUrls && channelUrls.length) && (
<React.Fragment> <React.Fragment>
{!fetchingChannels ? ( {!fetchingChannels ? (
<section className="main--empty">
<Yrbl <Yrbl
title={__('No channels')} title={__('No channels')}
subtitle={__("You haven't created a channel yet. All of your beautiful channels will be listed here!")} subtitle={__("You haven't created a channel yet. All of your beautiful channels will be listed here!")}
@ -148,7 +147,6 @@ export default function ChannelsPage(props: Props) {
</div> </div>
} }
/> />
</section>
) : ( ) : (
<section className="main--empty"> <section className="main--empty">
<Spinner delayed /> <Spinner delayed />

View file

@ -828,5 +828,8 @@ $actions-z-index: 2;
} }
@media (max-width: $breakpoint-small) { @media (max-width: $breakpoint-small) {
padding: var(--spacing-s); padding: var(--spacing-s);
.yrbl__wrap {
margin-top: var(--spacing-l);
}
} }
} }