Merge branch 'dev' into 'staging'

--

See merge request frontend/squiz!366
This commit is contained in:
Nastya 2024-08-22 08:37:40 +00:00
commit a01d45ed12

@ -97,6 +97,34 @@ export default function TariffCard({
</Box>
)}
</Box>
<Typography
variant="h5"
sx={{
mt: "14px",
mb: "10px",
textOverflow: "ellipsis",
overflow: "hidden",
whiteSpace: "nowrap",
width: "100%",
}}
>
{headerText}
</Typography>
<Box
sx={{
width: "100%",
mb: "auto",
}}
>
{text.map((line, index) => (
<Typography
sx={{ overflow: "hidden", textOverflow: "ellipsis" }}
key={index}
>
{line}
</Typography>
))}
</Box>
<Box
sx={{