style: adjust nav bar badge breakpoints

This commit is contained in:
Scott Wilson
2025-11-25 16:25:59 -08:00
parent 49f5bf2aef
commit f9fffad9ae
2 changed files with 2 additions and 2 deletions

View File

@@ -327,7 +327,7 @@ export const Navbar = () => {
<OrgIcon className={twMerge("size-[14px] shrink-0 text-org")} />
<span className="truncate">{currentOrg?.name}</span>
</button>
<Badge variant="org" className="hidden md:inline-flex">
<Badge variant="org" className="hidden lg:inline-flex">
Organization
</Badge>
{subscription.cardDeclined && (

View File

@@ -108,7 +108,7 @@ export const ProjectSelect = () => {
>
<ProjectIcon className="size-[14px] shrink-0 text-project" />
<span className="truncate">{currentWorkspace?.name}</span>
<Badge variant="project" className="hidden md:inline-flex">
<Badge variant="project" className="hidden lg:inline-flex">
{currentWorkspace.type ? PROJECT_TYPE_NAME[currentWorkspace.type] : "Project"}
</Badge>
</Link>