1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

fix: account buttons on mobile

This commit is contained in:
Fedor Katurov 2023-03-17 19:00:01 +06:00
parent 109aecd62f
commit d56bfe968d
2 changed files with 14 additions and 16 deletions

View file

@ -80,18 +80,16 @@ const ProfileAccounts: FC<ProfileAccountsProps> = () => {
)} )}
<Group horizontal className={styles.buttons}> <Group horizontal className={styles.buttons}>
<Superpower> <Button
<Button size="small"
size="small" type="button"
type="button" iconLeft="telegram"
iconLeft="telegram" color="gray"
color="gray" onClick={showTelegramModal}
onClick={showTelegramModal} disabled={hasTelegram}
disabled={hasTelegram} >
> Телеграм
Телеграм </Button>
</Button>
</Superpower>
<Button <Button
size="small" size="small"

View file

@ -11,14 +11,14 @@
.buttons { .buttons {
background: transparentize(black, 0.8); background: transparentize(black, 0.8);
border-radius: $radius; border-radius: $radius;
padding: $gap * 0.5;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: flex-end; justify-content: flex-end;
} flex-wrap: wrap;
.add { button {
//background-color: $content_bg !important; margin: $gap * 0.5 !important;
}
} }
.loader { .loader {