We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dda6905 commit e351214Copy full SHA for e351214
data-browser/src/components/ImageViewer.tsx
@@ -29,8 +29,10 @@ const ImageViewerStyled = styled.img<Props>`
29
z-index: ${t => (t.showFull ? '100' : 'auto')};
30
object-fit: contain;
31
/* Depends on navbarheight */
32
- top: ${t => (t.showFull ? '2.5rem' : '0')};
+ /* top: ${t => (t.showFull ? '2.5rem' : '0')}; */
33
+ top: 0;
34
left: 0;
35
right: 0;
36
bottom: 0;
37
+ background-color: ${t => t.theme.colors.bg};
38
`;
0 commit comments