Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/portal/src/app/account/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
28 changes: 13 additions & 15 deletions apps/portal/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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,
Expand Down Expand Up @@ -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);
}
Loading