Skip to content

Commit

Permalink
Fix memory page background (#1664)
Browse files Browse the repository at this point in the history
  • Loading branch information
beastoin authored Jan 9, 2025
2 parents b4afcb9 + 66da2b1 commit 80ef1de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/memories/memory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ interface MemoryProps {
export default function Memory({ memory, searchParams }: MemoryProps) {
const currentTab = searchParams.tab ?? 'sum';
return (
<div className="relative rounded-2xl border border-solid border-zinc-800 bg-transparent pb-6 text-white shadow-md shadow-gray-900 backdrop-blur-lg md:mx-auto md:pb-12">
<div className="relative rounded-2xl border border-solid border-zinc-800 pb-6 text-white shadow-md shadow-gray-900 backdrop-blur-lg md:mx-auto md:pb-12 bg-bg-color">
<div className="relative overflow-hidden py-6 md:pt-12">
<div className="relative z-50">
<div className="px-4 md:px-12">
Expand Down

0 comments on commit 80ef1de

Please sign in to comment.