Merge pull request #42 from pennyteenycat/develop

Develop
This commit is contained in:
pennyteenycat 2025-08-24 01:43:14 +02:00 committed by GitHub
commit 13b8e0a6a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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>,