This commit is contained in:
Nicola Benaglia 2025-05-17 15:19:10 +02:00
parent 431cebdd90
commit 7e3c97c4a7

View File

@ -1,18 +1,18 @@
import { Box, Typography, styled } from "@mui/material";
import { Box, Typography, styled } from '@mui/material';
export const FileAttachmentContainer = styled(Box)(({ theme }) => ({
display: "flex",
alignItems: "center",
padding: "5px 10px",
alignItems: 'center',
border: `1px solid ${theme.palette.text.primary}`,
width: "100%",
gap: '20px'
display: 'flex',
gap: '20px',
padding: '5px 10px',
width: '100%',
}));
export const FileAttachmentFont = styled(Typography)(({ theme }) => ({
fontSize: "20px",
letterSpacing: 0,
fontSize: '20px',
fontWeight: 400,
userSelect: "none",
whiteSpace: "nowrap",
letterSpacing: 0,
userSelect: 'none',
whiteSpace: 'nowrap',
}));