Skip to content

Commit a680217

Browse files
committed
feat: update empty state bg
1 parent 363d50a commit a680217

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

apps/dashboard/src/@/styles/globals.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
[data-theme="dark"] {
4747
/* bg - neutral */
4848
--background: 0 0% 0%;
49-
--card: 0 0% 0%;
49+
--card: 0 0% 5%;
5050
--popover: 0 0% 0%;
5151
--secondary: 0 0% 10%;
5252
--muted: 0 0% 9%;

apps/dashboard/src/app/team/[team_slug]/[project_slug]/components/EmptyState.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import walletsIcon from "../../../../../../public/assets/tw-icons/wallets.svg";
1717

1818
export function EmptyState() {
1919
return (
20-
<div className="container flex items-center justify-center p-6 py-24 md:h-[770px]">
21-
<div className="group flex flex-col items-center justify-center gap-8">
20+
<div className="container flex items-center justify-center p-6 md:h-[770px]">
21+
<div className="group container flex flex-col items-center justify-center gap-8 rounded-lg border bg-card p-6 py-24">
2222
<div className="flex max-w-[500px] flex-col items-center justify-center gap-6">
2323
<AnimatedIcons />
2424
<div className="flex flex-col gap-0.5 text-center">
@@ -117,7 +117,7 @@ function Icon({
117117
return (
118118
<div
119119
className={cn(
120-
"flex size-10 items-center justify-center rounded-xl border bg-background transition-all duration-200 ease-in-out",
120+
"flex size-10 items-center justify-center rounded-xl border bg-card transition-all duration-200 ease-in-out",
121121
className,
122122
)}
123123
>

0 commit comments

Comments
 (0)