From 76e2986e1f32b2ebe29f8d839516d96f65e71bc7 Mon Sep 17 00:00:00 2001 From: Terry Sutton Date: Thu, 11 May 2023 16:10:00 -0230 Subject: [PATCH] Update stroke colours --- .../Navigation/NavigationMenu/NavigationMenuCliList.tsx | 2 +- .../NavigationMenu/NavigationMenuGuideListItems.tsx | 2 +- apps/docs/docs/ref/cli/global-flags.mdx | 1 + apps/docs/layouts/guides/index.tsx | 6 +++--- apps/docs/pages/guides/functions.mdx | 1 + 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/apps/docs/components/Navigation/NavigationMenu/NavigationMenuCliList.tsx b/apps/docs/components/Navigation/NavigationMenu/NavigationMenuCliList.tsx index 56d06558cb7..deb8caf1f17 100644 --- a/apps/docs/components/Navigation/NavigationMenu/NavigationMenuCliList.tsx +++ b/apps/docs/components/Navigation/NavigationMenu/NavigationMenuCliList.tsx @@ -48,7 +48,7 @@ const NavigationMenuCliList = ({ currentLevel, setLevel, id }) => { } const Divider = () => { - return
+ return
} const MenuSections = [ diff --git a/apps/docs/components/Navigation/NavigationMenu/NavigationMenuGuideListItems.tsx b/apps/docs/components/Navigation/NavigationMenu/NavigationMenuGuideListItems.tsx index 60ea755c949..cb5c75be03e 100644 --- a/apps/docs/components/Navigation/NavigationMenu/NavigationMenuGuideListItems.tsx +++ b/apps/docs/components/Navigation/NavigationMenu/NavigationMenuGuideListItems.tsx @@ -54,7 +54,7 @@ const ContentAccordionLink = React.memo(function ContentAccordionLink(props: any <> {props.subItemIndex === 0 && ( <> -
+
{props.parent.name} diff --git a/apps/docs/docs/ref/cli/global-flags.mdx b/apps/docs/docs/ref/cli/global-flags.mdx index 39aaf77295b..088a10a07a0 100644 --- a/apps/docs/docs/ref/cli/global-flags.mdx +++ b/apps/docs/docs/ref/cli/global-flags.mdx @@ -1,5 +1,6 @@ --- title: Global Flags +subtitle: 'Supabase CLI supports global flags for every command.' description: 'Supabase CLI supports global flags for every command.' --- diff --git a/apps/docs/layouts/guides/index.tsx b/apps/docs/layouts/guides/index.tsx index cd5108189cd..390945e7b2e 100644 --- a/apps/docs/layouts/guides/index.tsx +++ b/apps/docs/layouts/guides/index.tsx @@ -15,10 +15,10 @@ import useHash from '~/hooks/useHash' interface Props { meta: { title: string - description?: string + description?: string // used in meta tags hide_table_of_contents?: boolean breadcrumb?: string - subtitle?: string + subtitle?: string // used on the page under the H1 footerHelpType?: FooterHelpCalloutType video?: string tocVideo?: string @@ -127,7 +127,7 @@ const Layout: FC = (props) => { {props.meta.subtitle && (

{props.meta.subtitle}

)} -
+
{props.children} {EDIT_BUTTON_EXCLUDE_LIST.includes(router.route) ? ( diff --git a/apps/docs/pages/guides/functions.mdx b/apps/docs/pages/guides/functions.mdx index 6040506ef0a..43766eb0b21 100644 --- a/apps/docs/pages/guides/functions.mdx +++ b/apps/docs/pages/guides/functions.mdx @@ -4,6 +4,7 @@ export const meta = { id: 'functions', title: 'Edge Functions', description: 'Globally distributed TypeScript functions.', + subtitle: 'Globally distributed TypeScript functions.', sidebar_label: 'Overview', hide_table_of_contents: true, }