From 3f324a599c7bc02b5aa6cb4a4a47c490f98e3300 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Thu, 16 Jan 2025 19:21:36 +0530 Subject: [PATCH] Prep --- .../photos/src/components/pages/gallery/PreviewCard.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/web/apps/photos/src/components/pages/gallery/PreviewCard.tsx b/web/apps/photos/src/components/pages/gallery/PreviewCard.tsx index 8aacf48b13..ff3aeb0240 100644 --- a/web/apps/photos/src/components/pages/gallery/PreviewCard.tsx +++ b/web/apps/photos/src/components/pages/gallery/PreviewCard.tsx @@ -176,8 +176,12 @@ const FileTypeIndicatorOverlay = styled(Overlay)(({ theme }) => ({ justifyContent: "flex-end", alignItems: "flex-end", padding: "8px", + // TODO(LM): Ditto the dark one until lm is ready. + // background: + // "linear-gradient(315deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, + // 255, 0.05) 29.61%, rgba(255, 255, 255, 0) 49.86%)", background: - "linear-gradient(315deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 29.61%, rgba(255, 255, 255, 0) 49.86%)", + "linear-gradient(315deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.05) 29.61%, rgba(0, 0, 0, 0) 49.86%)", ...theme.applyStyles("dark", { background: "linear-gradient(315deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.05) 29.61%, rgba(0, 0, 0, 0) 49.86%)",