Merge branch 'dev' into 'staging'
-- See merge request frontend/squiz!366
This commit is contained in:
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={{
|
||||
|
Loading…
Reference in New Issue
Block a user