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

fixed paddings on lab tabs

This commit is contained in:
Fedor Katurov 2022-03-25 10:16:30 +07:00
parent c0c3b3af6a
commit 7a6a44cccf
2 changed files with 4 additions and 3 deletions

View file

@ -19,10 +19,10 @@ interface IProps {
const LabHeadItem: FC<IProps> = ({ icon, color, children, isLoading, active, onClick }) => {
if (isLoading) {
return (
<Group horizontal className={styles.item} key="loading">
<div className={styles.item} key="loading">
<Placeholder width="32px" height={32} />
<Placeholder width="96px" height={18} />
</Group>
</div>
);
}