@@ -130,7 +130,7 @@ export const CustomSearchSelect = ({
key={option.value}
value={option.value}
className={({ active, selected }) =>
- `${active || selected ? "bg-brand-surface-1" : ""} ${
+ `${active || selected ? "bg-brand-surface-2" : ""} ${
selected ? "font-medium" : ""
} flex cursor-pointer select-none items-center justify-between gap-2 truncate rounded px-1 py-1.5 text-brand-secondary`
}
diff --git a/apps/app/components/ui/custom-select.tsx b/apps/app/components/ui/custom-select.tsx
index 4117daf06..81f2e9b5a 100644
--- a/apps/app/components/ui/custom-select.tsx
+++ b/apps/app/components/ui/custom-select.tsx
@@ -51,7 +51,7 @@ const CustomSelect = ({
) : (
= ({ children, value, className }) => (
- `${className} ${active || selected ? "bg-brand-surface-1" : ""} ${
+ `${className} ${active || selected ? "bg-brand-surface-2" : ""} ${
selected ? "font-medium" : ""
} cursor-pointer select-none truncate rounded px-1 py-1.5 text-brand-secondary`
}
diff --git a/apps/app/components/ui/multi-level-dropdown.tsx b/apps/app/components/ui/multi-level-dropdown.tsx
index 0705f53a0..36e4e84c0 100644
--- a/apps/app/components/ui/multi-level-dropdown.tsx
+++ b/apps/app/components/ui/multi-level-dropdown.tsx
@@ -60,7 +60,7 @@ export const MultiLevelDropdown: React.FC = ({
>
{options.map((option) => (
@@ -83,7 +83,7 @@ export const MultiLevelDropdown: React.FC
= ({
<>
= ({
{option.children && option.id === openChildFor && (
= ({
onSelect(child.value);
}}
className={`${
- child.selected ? "bg-brand-surface-1" : ""
- } flex w-full items-center break-all rounded px-1 py-1.5 text-left capitalize text-brand-secondary hover:bg-brand-surface-1`}
+ child.selected ? "bg-brand-surface-2" : ""
+ } flex w-full items-center break-all rounded px-1 py-1.5 text-left capitalize text-brand-secondary hover:bg-brand-surface-2`}
>
{child.label}
diff --git a/apps/app/layouts/auth-layout/workspace-authorization-wrapper.tsx b/apps/app/layouts/auth-layout/workspace-authorization-wrapper.tsx
index cd3766cf1..a1bfafa1c 100644
--- a/apps/app/layouts/auth-layout/workspace-authorization-wrapper.tsx
+++ b/apps/app/layouts/auth-layout/workspace-authorization-wrapper.tsx
@@ -70,7 +70,7 @@ export const WorkspaceAuthorizationLayout: React.FC
= ({
if (!workspaceMemberMe && !error)
return (
-
+
Loading your workspace...
@@ -83,7 +83,7 @@ export const WorkspaceAuthorizationLayout: React.FC
= ({
// FIXME: show 404 for workspace not workspace member
if (error?.status === 404) {
return (
-
+
No such workspace exist. Create one?
);
@@ -131,7 +131,7 @@ export const WorkspaceAuthorizationLayout: React.FC
= ({
noPadding ? "" : settingsLayout || profilePage ? "p-8 lg:px-28" : "p-8"
} ${
bg === "primary"
- ? "bg-brand-base"
+ ? "bg-brand-surface-1"
: bg === "secondary"
? "bg-brand-surface-1"
: "bg-brand-base"
diff --git a/apps/app/pages/[workspaceSlug]/projects/[projectId]/issues/[issueId].tsx b/apps/app/pages/[workspaceSlug]/projects/[projectId]/issues/[issueId].tsx
index 3bdc2a878..5e1214fcc 100644
--- a/apps/app/pages/[workspaceSlug]/projects/[projectId]/issues/[issueId].tsx
+++ b/apps/app/pages/[workspaceSlug]/projects/[projectId]/issues/[issueId].tsx
@@ -142,7 +142,7 @@ const IssueDetailsPage: NextPage = () => {
{issueDetails?.parent && issueDetails.parent !== "" ? (
-
+
{
customButton={
@@ -375,7 +375,7 @@ const SinglePage: NextPage = () => {
customButton={