fixed payment history styles on tablet and mobile devices

This commit is contained in:
aleksandr-raw 2024-04-03 10:57:17 +04:00
parent 78b91d2d7a
commit e688b64389

@ -100,10 +100,10 @@ export default function AccordionWrapper2({ tariff, price, last, first, createdA
fontWeight: 500,
color: /* valuesByKey.expired */ false ? theme.palette.text.disabled : theme.palette.gray.dark,
px: 0,
width: "200px",
width: upMd? "200px" : "auto",
maxWidth: "200px",
overflow: "hidden",
textOverflow: "ellipsis"
textOverflow: "ellipsis",
}}
>
{tariff.isCustom ? "Мой тариф" : tariff.name}
@ -112,7 +112,7 @@ export default function AccordionWrapper2({ tariff, price, last, first, createdA
<Box
sx={{
display: "flex",
justifyContent: "space-between",
justifyContent: "space-between",
alignItems: "center",
flexFlow: "1",
flexBasis: "60%",