Add Japan-gated custom logo (#11161)

This commit is contained in:
Samuel Newman
2026-07-16 14:26:05 +03:00
committed by GitHub
parent 4037392105
commit 406fb5425c
21 changed files with 80 additions and 34 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ export function Badge() {
backgroundColor: t.palette.primary_25,
},
]}>
<Logo fill={t.palette.primary_600} width={14} />
<Logo allowVariants={false} fill={t.palette.primary_600} width={14} />
<Text
style={[
a.font_semi_bold,
+6 -2
View File
@@ -86,7 +86,7 @@ export function QrCode({
<Trans>
on
<View style={[a.flex_row, a.align_center, {gap: 6}]}>
<Logo width={25} fill="white" />
<Logo allowVariants={false} width={25} fill="white" />
<View style={[{marginTop: 3.5}]}>
<Logotype width={72} fill="white" />
</View>
@@ -129,7 +129,11 @@ export function QrCodeInner({link}: {link: string}) {
zIndex: 1,
padding: 4,
}}>
<Logo width={logoArea.width - 14} height={logoArea.height - 14} />
<Logo
allowVariants={false}
width={logoArea.width - 14}
height={logoArea.height - 14}
/>
</View>
)}
<QRCode
+1 -1
View File
@@ -107,7 +107,7 @@ export function WelcomeModal({control}: WelcomeModalProps) {
a.p_0,
]}>
<View style={[a.flex_row, a.align_center, a.gap_xs]}>
<Logo width={26} />
<Logo allowVariants={false} width={26} />
<Text
style={[
a.text_2xl,
+1 -1
View File
@@ -55,7 +55,7 @@ function SigninDialogInner({}: {control: Dialog.DialogOuterProps['control']}) {
a.gap_sm,
a.pb_lg,
]}>
<Logo width={36} />
<Logo allowVariants={false} width={36} />
<View style={{paddingTop: 6}}>
<Logotype width={120} fill={t.atoms.text.color} />
</View>