web: fix ButtonTelegram content layout

This commit is contained in:
vchikalkin 2024-07-13 23:52:33 +03:00
parent 0ffaaf877f
commit 5048d7e8d7
2 changed files with 1 additions and 7 deletions

View File

@ -25,10 +25,6 @@
white-space: nowrap;
overflow: hidden;
b {
line-height: 0;
}
animation: colorTransition 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

View File

@ -108,9 +108,7 @@ export function TelegramForm() {
if (step === 'telegram') {
return (
<BaseForm onSubmit={() => handleTelegramLogin()}>
<ButtonTelegram>
Войти как &nbsp; <b>{user?.displayName}</b>
</ButtonTelegram>
<ButtonTelegram>Войти как &nbsp;{user?.displayName}</ButtonTelegram>
</BaseForm>
);
}