diff --git a/src/components/Firestore/index.tsx b/src/components/Firestore/index.tsx index db54bf04c..6d3eb2b1b 100644 --- a/src/components/Firestore/index.tsx +++ b/src/components/Firestore/index.tsx @@ -21,6 +21,7 @@ import { Card } from '@rmwc/card'; import { Elevation } from '@rmwc/elevation'; import { GridCell } from '@rmwc/grid'; import { Tab, TabBar } from '@rmwc/tabs'; +import { Typography } from '@rmwc/typography'; import React, { Suspense, useState } from 'react'; import { Link, @@ -33,9 +34,11 @@ import { } from 'react-router-dom'; import { CustomThemeProvider } from '../../themes'; +import { Callout } from '../common/Callout'; import { useIsEmulatorDisabled } from '../common/EmulatorConfigProvider'; import { EmulatorDisabled } from '../common/EmulatorDisabled'; import { InteractiveBreadCrumbBar } from '../common/InteractiveBreadCrumbBar'; +import { DocsLink } from '../common/links/DocsLink'; import { Spinner } from '../common/Spinner'; import { promptClearAll } from './dialogs/clearAll'; import { Root } from './Document'; @@ -132,6 +135,27 @@ export const Firestore: React.FC> = React.memo( ) : ( + + + + + Learn more + + + + } + > + The Emulator Suite UI only supports the (default) database right + now. + +
diff --git a/src/components/common/Callout.scss b/src/components/common/Callout.scss index ae4941b3d..7e154af4f 100644 --- a/src/components/common/Callout.scss +++ b/src/components/common/Callout.scss @@ -32,7 +32,7 @@ display: flex; align-items: stretch; .Callout-icon { - color: white; + color: var(--mdc-theme-text-primary-on-background); } }