This commit is contained in:
Manav Rathi
2024-11-06 10:01:41 +05:30
parent 542cb16e1a
commit 079154198b
2 changed files with 9 additions and 10 deletions

View File

@@ -29,6 +29,7 @@ import {
Box,
Button,
CircularProgress,
Paper,
styled,
Typography,
type CircularProgressProps,
@@ -56,7 +57,6 @@ import { PublicCollectionGalleryContext } from "utils/publicCollectionGallery";
import { getTrashFileMessage } from "utils/ui";
import { FileInfo, type FileInfoExif, type FileInfoProps } from "./FileInfo";
import ImageEditorOverlay from "./ImageEditorOverlay";
import { LivePhotoBtnContainer } from "./styledComponents/LivePhotoBtn";
interface PhotoswipeFullscreenAPI {
enter: () => void;
@@ -1038,3 +1038,11 @@ const ConversionFailedNotification: React.FC<
/>
);
};
const LivePhotoBtnContainer = styled(Paper)`
border-radius: 4px;
position: absolute;
bottom: 10vh;
right: 6vh;
z-index: 10;
`;

View File

@@ -1,9 +0,0 @@
import { Paper, styled } from "@mui/material";
export const LivePhotoBtnContainer = styled(Paper)`
border-radius: 4px;
position: absolute;
bottom: 10vh;
right: 6vh;
z-index: 10;
`;