add basic message for creator analytics issues #5001

Merged
neb-b merged 2 commits from creator-analytics into master 2020-11-08 16:57:03 +01:00
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);
}