Change "Manage" from solid button to simple text.

I think this looks cleaner.

I've also tried just having a right solid chevron, but it doesn't look nice with other widgets like checkboxes.
This commit is contained in:
infinite-persistence 2021-08-19 22:38:15 +08:00
parent 6b82aae735
commit 049a952765
No known key found for this signature in database
GPG key ID: B9C3252EDC3D0AA0
2 changed files with 10 additions and 10 deletions

View file

@ -66,9 +66,9 @@ export default function SettingAccount(props: Props) {
subtitle={__('Connect a bank account to receive tips and compensation in your local currency')}
>
<Button
button="secondary"
button="inverse"
label={__('Manage')}
icon={ICONS.SETTINGS}
icon={ICONS.ARROW_RIGHT}
navigate={`/$/${PAGES.SETTINGS_STRIPE_ACCOUNT}`}
/>
</SettingsRow>
@ -82,9 +82,9 @@ export default function SettingAccount(props: Props) {
subtitle={__('Add a credit card to tip creators in their local currency')}
>
<Button
button="secondary"
button="inverse"
label={__('Manage')}
icon={ICONS.SETTINGS}
icon={ICONS.ARROW_RIGHT}
navigate={`/$/${PAGES.SETTINGS_STRIPE_CARD}`}
/>
</SettingsRow>

View file

@ -128,18 +128,18 @@ export default function SettingContent(props: Props) {
<>
<SettingsRow title={__('Notifications')}>
<Button
button="secondary"
button="inverse"
label={__('Manage')}
icon={ICONS.SETTINGS}
icon={ICONS.ARROW_RIGHT}
navigate={`/$/${PAGES.SETTINGS_NOTIFICATIONS}`}
/>
</SettingsRow>
<SettingsRow title={__('Blocked and muted channels')}>
<Button
button="secondary"
button="inverse"
label={__('Manage')}
icon={ICONS.SETTINGS}
icon={ICONS.ARROW_RIGHT}
navigate={`/$/${PAGES.SETTINGS_BLOCKED_MUTED}`}
/>
</SettingsRow>
@ -147,9 +147,9 @@ export default function SettingContent(props: Props) {
{myChannelUrls && myChannelUrls.length > 0 && (
<SettingsRow title={__('Creator settings')}>
<Button
button="secondary"
button="inverse"
label={__('Manage')}
icon={ICONS.SETTINGS}
icon={ICONS.ARROW_RIGHT}
navigate={`/$/${PAGES.SETTINGS_CREATOR}`}
/>
</SettingsRow>