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')}
|
subtitle={__('Connect a bank account to receive tips and compensation in your local currency')}
|
||||||
>
|
>
|
||||||
<Button
|
<Button
|
||||||
button="secondary"
|
button="inverse"
|
||||||
label={__('Manage')}
|
label={__('Manage')}
|
||||||
icon={ICONS.SETTINGS}
|
icon={ICONS.ARROW_RIGHT}
|
||||||
navigate={`/$/${PAGES.SETTINGS_STRIPE_ACCOUNT}`}
|
navigate={`/$/${PAGES.SETTINGS_STRIPE_ACCOUNT}`}
|
||||||
/>
|
/>
|
||||||
</SettingsRow>
|
</SettingsRow>
|
||||||
|
@ -82,9 +82,9 @@ export default function SettingAccount(props: Props) {
|
||||||
subtitle={__('Add a credit card to tip creators in their local currency')}
|
subtitle={__('Add a credit card to tip creators in their local currency')}
|
||||||
>
|
>
|
||||||
<Button
|
<Button
|
||||||
button="secondary"
|
button="inverse"
|
||||||
label={__('Manage')}
|
label={__('Manage')}
|
||||||
icon={ICONS.SETTINGS}
|
icon={ICONS.ARROW_RIGHT}
|
||||||
navigate={`/$/${PAGES.SETTINGS_STRIPE_CARD}`}
|
navigate={`/$/${PAGES.SETTINGS_STRIPE_CARD}`}
|
||||||
/>
|
/>
|
||||||
</SettingsRow>
|
</SettingsRow>
|
||||||
|
|
|
@ -128,18 +128,18 @@ export default function SettingContent(props: Props) {
|
||||||
<>
|
<>
|
||||||
<SettingsRow title={__('Notifications')}>
|
<SettingsRow title={__('Notifications')}>
|
||||||
<Button
|
<Button
|
||||||
button="secondary"
|
button="inverse"
|
||||||
label={__('Manage')}
|
label={__('Manage')}
|
||||||
icon={ICONS.SETTINGS}
|
icon={ICONS.ARROW_RIGHT}
|
||||||
navigate={`/$/${PAGES.SETTINGS_NOTIFICATIONS}`}
|
navigate={`/$/${PAGES.SETTINGS_NOTIFICATIONS}`}
|
||||||
/>
|
/>
|
||||||
</SettingsRow>
|
</SettingsRow>
|
||||||
|
|
||||||
<SettingsRow title={__('Blocked and muted channels')}>
|
<SettingsRow title={__('Blocked and muted channels')}>
|
||||||
<Button
|
<Button
|
||||||
button="secondary"
|
button="inverse"
|
||||||
label={__('Manage')}
|
label={__('Manage')}
|
||||||
icon={ICONS.SETTINGS}
|
icon={ICONS.ARROW_RIGHT}
|
||||||
navigate={`/$/${PAGES.SETTINGS_BLOCKED_MUTED}`}
|
navigate={`/$/${PAGES.SETTINGS_BLOCKED_MUTED}`}
|
||||||
/>
|
/>
|
||||||
</SettingsRow>
|
</SettingsRow>
|
||||||
|
@ -147,9 +147,9 @@ export default function SettingContent(props: Props) {
|
||||||
{myChannelUrls && myChannelUrls.length > 0 && (
|
{myChannelUrls && myChannelUrls.length > 0 && (
|
||||||
<SettingsRow title={__('Creator settings')}>
|
<SettingsRow title={__('Creator settings')}>
|
||||||
<Button
|
<Button
|
||||||
button="secondary"
|
button="inverse"
|
||||||
label={__('Manage')}
|
label={__('Manage')}
|
||||||
icon={ICONS.SETTINGS}
|
icon={ICONS.ARROW_RIGHT}
|
||||||
navigate={`/$/${PAGES.SETTINGS_CREATOR}`}
|
navigate={`/$/${PAGES.SETTINGS_CREATOR}`}
|
||||||
/>
|
/>
|
||||||
</SettingsRow>
|
</SettingsRow>
|
||||||
|
|
Loading…
Add table
Reference in a new issue