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 }) => ({ export const FileAttachmentContainer = styled(Box)(({ theme }) => ({
display: "flex", alignItems: 'center',
alignItems: "center", border: `1px solid ${theme.palette.text.primary}`,
padding: "5px 10px", display: 'flex',
border: `1px solid ${theme.palette.text.primary}`, gap: '20px',
width: "100%", padding: '5px 10px',
gap: '20px' width: '100%',
})); }));
export const FileAttachmentFont = styled(Typography)(({ theme }) => ({ export const FileAttachmentFont = styled(Typography)(({ theme }) => ({
fontSize: "20px", fontSize: '20px',
letterSpacing: 0, fontWeight: 400,
fontWeight: 400, letterSpacing: 0,
userSelect: "none", userSelect: 'none',
whiteSpace: "nowrap", whiteSpace: 'nowrap',
})); }));