Remove icons, adjust padding
This commit is contained in:
@@ -14,10 +14,8 @@ import {ScrollView} from '#/view/com/util/Views'
|
|||||||
import {Logo} from '#/view/icons/Logo'
|
import {Logo} from '#/view/icons/Logo'
|
||||||
import {atoms as a, useTheme} from '#/alf'
|
import {atoms as a, useTheme} from '#/alf'
|
||||||
import {AccountList} from '#/components/AccountList'
|
import {AccountList} from '#/components/AccountList'
|
||||||
import {Button, ButtonIcon, ButtonText} from '#/components/Button'
|
import {Button, ButtonText} from '#/components/Button'
|
||||||
import {Divider} from '#/components/Divider'
|
import {Divider} from '#/components/Divider'
|
||||||
import {ArrowRotateCounterClockwise_Stroke2_Corner0_Rounded as Refresh} from '#/components/icons/ArrowRotateCounterClockwise'
|
|
||||||
import {Person_Stroke2_Corner0_Rounded as Person} from '#/components/icons/Person'
|
|
||||||
import {Text} from '#/components/Typography'
|
import {Text} from '#/components/Typography'
|
||||||
|
|
||||||
const COL_WIDTH = 400
|
const COL_WIDTH = 400
|
||||||
@@ -73,8 +71,8 @@ export function Deactivated() {
|
|||||||
style={[
|
style={[
|
||||||
a.px_2xl,
|
a.px_2xl,
|
||||||
{
|
{
|
||||||
paddingTop: insets.top + a.pt_5xl.paddingTop,
|
paddingTop: isWeb ? 64 : insets.top,
|
||||||
paddingBottom: insets.bottom + a.pt_5xl.paddingTop,
|
paddingBottom: isWeb ? 64 : insets.bottom,
|
||||||
},
|
},
|
||||||
]}>
|
]}>
|
||||||
<View style={[a.flex_row, a.justify_center]}>
|
<View style={[a.flex_row, a.justify_center]}>
|
||||||
@@ -107,7 +105,6 @@ export function Deactivated() {
|
|||||||
variant="solid"
|
variant="solid"
|
||||||
color="primary"
|
color="primary"
|
||||||
onPress={() => setShowLoggedOut(true)}>
|
onPress={() => setShowLoggedOut(true)}>
|
||||||
<ButtonIcon icon={Refresh} position="left" />
|
|
||||||
<ButtonText>
|
<ButtonText>
|
||||||
<Trans>Yes, reactivate my account</Trans>
|
<Trans>Yes, reactivate my account</Trans>
|
||||||
</ButtonText>
|
</ButtonText>
|
||||||
@@ -162,7 +159,6 @@ export function Deactivated() {
|
|||||||
variant="solid"
|
variant="solid"
|
||||||
color="secondary"
|
color="secondary"
|
||||||
onPress={() => setShowLoggedOut(true)}>
|
onPress={() => setShowLoggedOut(true)}>
|
||||||
<ButtonIcon icon={Person} position="left" />
|
|
||||||
<ButtonText>
|
<ButtonText>
|
||||||
<Trans>Log in or sign up</Trans>
|
<Trans>Log in or sign up</Trans>
|
||||||
</ButtonText>
|
</ButtonText>
|
||||||
|
|||||||
Reference in New Issue
Block a user