This commit is contained in:
Manav Rathi
2025-01-17 12:50:56 +05:30
parent cb085ba0f3
commit 82a2c6e12b

View File

@@ -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;