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

fixed appearance for profile sidebar

This commit is contained in:
Fedor Katurov 2022-03-29 15:39:29 +07:00
parent 42c9fed92c
commit 16d12f92da
11 changed files with 96 additions and 10 deletions

View file

@ -37,13 +37,21 @@ const ProfileSidebarMenu: VFC<ProfileSidebarMenuProps> = ({ onClose }) => {
<VerticalMenu.Item onClick={() => setActiveTab(2)}>Удалённые посты</VerticalMenu.Item>
</VerticalMenu>
<ProfileStats />
<div className={styles.stats}>
<ProfileStats />
</div>
</Group>
</Filler>
<Button round onClick={onClose} color="secondary">
Закрыть
</Button>
<Group className={styles.buttons}>
<Button round onClick={onClose} color="outline">
Выйти
</Button>
<Button round onClick={onClose} color="outline-white">
Закрыть
</Button>
</Group>
</div>
);
};