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:
parent
159e1c10e0
commit
3a96382901
2 changed files with 9 additions and 0 deletions
|
@ -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}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue