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;