From 82a2c6e12b8d76091e90543fb23ecbb7fa4a1d13 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Fri, 17 Jan 2025 12:50:56 +0530 Subject: [PATCH] For now --- .../photos/src/components/PhotoViewer/FileInfo.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/web/apps/photos/src/components/PhotoViewer/FileInfo.tsx b/web/apps/photos/src/components/PhotoViewer/FileInfo.tsx index abf09d9803..7e4f4e5fc7 100644 --- a/web/apps/photos/src/components/PhotoViewer/FileInfo.tsx +++ b/web/apps/photos/src/components/PhotoViewer/FileInfo.tsx @@ -901,13 +901,17 @@ const MapBoxContainer = styled("div")` width: 100%; `; -const MapBoxEnableContainer = styled(MapBoxContainer)` +const MapBoxEnableContainer = styled(MapBoxContainer)( + ({ theme }) => ` position: relative; display: flex; justify-content: center; align-items: center; - background-color: rgba(255, 255, 255, 0.09); -`; + /* TODO(LM): Name? */ + background-color: ${theme.vars.palette.fill.faintHover}; + // background-color: rgba(255, 255, 255, 0.09); +`, +); interface RawExifProps { open: boolean;