diff --git a/apps/portal/src/app/account/sidebar.tsx b/apps/portal/src/app/account/sidebar.tsx index a7acd63abc7..a546851c015 100644 --- a/apps/portal/src/app/account/sidebar.tsx +++ b/apps/portal/src/app/account/sidebar.tsx @@ -32,8 +32,8 @@ export const sidebar: SideBar = { name: "Manage Billing", }, { - name: "Get Dedicated Support", href: `${accountSlug}/teams/get-dedicated-support`, + name: "Get Dedicated Support", }, ], name: "Teams", diff --git a/apps/portal/src/app/globals.css b/apps/portal/src/app/globals.css index a5e469e40f9..29a0e2c5a03 100644 --- a/apps/portal/src/app/globals.css +++ b/apps/portal/src/app/globals.css @@ -108,6 +108,19 @@ } } +code span { + color: var(--code-light-color); +} + +.dark code span { + color: var(--code-dark-color); +} + +.shiki, +.shiki span { + background-color: transparent !important; +} + .dark .shiki, .dark .shiki span { color: var(--shiki-dark) !important; @@ -117,11 +130,6 @@ text-decoration: var(--shiki-dark-text-decoration) !important; } -.shiki, -.shiki span { - background-color: transparent !important; -} - /* Fix colors on auto-filled inputs */ input:-webkit-autofill, input:-webkit-autofill:hover, @@ -192,13 +200,3 @@ button { html:not(.dark) .dark-only { display: none; } - -/* biome-ignore lint/style/noDescendingSpecificity:we explicitly WANT to target SPANs INSIDE of CODE tags */ -code span { - color: var(--code-light-color); -} - -/* biome-ignore lint/style/noDescendingSpecificity:we explicitly WANT to target SPANs INSIDE of CODE tags */ -.dark code span { - color: var(--code-dark-color); -}