subscription-button

change button style
This commit is contained in:
gofnnp 2025-08-20 00:25:06 +04:00
parent 22ed716085
commit 47a67260a0
2 changed files with 10 additions and 1 deletions

View File

@ -31,3 +31,12 @@
font-weight: 600;
}
}
.buttonCancel.buttonCancel {
background-color: transparent;
padding: 0;
& > .buttonCancelText {
text-decoration: underline;
}
}

View File

@ -71,7 +71,7 @@ export default function SubscriptionTable({ subscription }: ITableProps) {
className={styles.buttonCancel}
onClick={() => open(subscription)}
>
<Typography color="white">
<Typography color="muted" className={styles.buttonCancelText}>
{t("table.cancel_subscription")}
</Typography>
</Button>,