feat: add upgrade banners for teams and organizations (#27650)

This commit is contained in:
Eunjae Lee
2026-03-05 18:19:01 +09:00
committed by GitHub
parent c197de147a
commit b7340f7151
74 changed files with 1834 additions and 500 deletions
+2 -2
View File
@@ -206,10 +206,10 @@ function MainContainer({
...props
}: LayoutProps) {
return (
<main className="bg-default relative z-0 flex-1 pb-8 focus:outline-none">
<main className="bg-default relative z-0 flex-1 focus:outline-none">
{/* show top navigation for md and smaller (tablet and phones) */}
{TopNavContainerProp}
<div className="max-w-full p-2 sm:py-4 lg:px-6">
<div className="max-w-full p-2 sm:p-4 lg:p-6">
<ErrorBoundary>
{!props.withoutMain ? <ShellMain {...props}>{props.children}</ShellMain> : props.children}
</ErrorBoundary>