add basic message for creator analytics issues (#5001)

* add basic message for creator analytics issues

Co-authored-by: Thomas Zarebczan <tzarebczan@users.noreply.github.com>
This commit is contained in:
Sean Yesmunt 2020-11-08 10:57:02 -05:00 committed by GitHub
parent 159e1c10e0
commit 3a96382901
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View file

@ -77,6 +77,10 @@ export default function CreatorDashboardPage(props: Props) {
{!fetchingChannels && channels && channels.length && (
<React.Fragment>
<div className="section section--padded section--help">
<p>Creator analytics are down for maintenance. Please check back later.</p>
</div>
<div className="section">
<ChannelSelector
selectedChannelUrl={selectedChannelUrl}

View file

@ -14,6 +14,11 @@
max-width: 40rem;
}
.section--help {
border-radius: var(--border-radius);
background-color: var(--color-primary-alt);
}
.section__header {
margin-bottom: var(--spacing-l);
}