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}>
<Superpower>
<Button
size="small"
type="button"
iconLeft="telegram"
color="gray"
onClick={showTelegramModal}
disabled={hasTelegram}
>
Телеграм
</Button>
</Superpower>
<Button
size="small"
type="button"
iconLeft="telegram"
color="gray"
onClick={showTelegramModal}
disabled={hasTelegram}
>
Телеграм
</Button>
<Button
size="small"

View file

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