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:
parent
6b82aae735
commit
049a952765
2 changed files with 10 additions and 10 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue