This commit is contained in:
Manav Rathi
2025-02-04 16:07:52 +05:30
parent be790b5bc5
commit 5ed9ac0578

View File

@@ -982,16 +982,17 @@ const defaultLivePhotoDefaultOptions = {
visible: false,
};
const CaptionContainer = styled("div")(({ theme }) => ({
padding: theme.spacing(2),
wordBreak: "break-word",
textAlign: "right",
maxWidth: "375px",
fontSize: "14px",
lineHeight: "17px",
backgroundColor: theme.vars.palette.backdrop.faint,
backdropFilter: "blur(96px)",
}));
const CaptionContainer = styled((props) => (
<Typography variant="small" {...props} />
))(`
padding: 16px;
word-break: break-word;
text-align: right;
max-width: 375px;
background-color: rgba(0 0 0 / 0.20);
color: white;
backdrop-filter: blur(60px);
`);
const CircularProgressWithLabel: React.FC<
Pick<CircularProgressProps, "value">