mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-26 05:16:41 +07:00
#23 added superpowers ui tab
This commit is contained in:
parent
c939dcbce8
commit
b1f019ebae
15 changed files with 162 additions and 42 deletions
12
src/components/dialogs/Tabs/index.tsx
Normal file
12
src/components/dialogs/Tabs/index.tsx
Normal file
|
@ -0,0 +1,12 @@
|
|||
import React, { FC, useCallback } from 'react';
|
||||
import styles from './styles.module.scss';
|
||||
import classNames from 'classnames';
|
||||
import { IAuthState } from '~/redux/auth/types';
|
||||
|
||||
interface IProps {}
|
||||
|
||||
const Tabs: FC<IProps> = ({ children }) => {
|
||||
return <div className={styles.wrap}>{children}</div>;
|
||||
};
|
||||
|
||||
export { Tabs };
|
9
src/components/dialogs/Tabs/styles.module.scss
Normal file
9
src/components/dialogs/Tabs/styles.module.scss
Normal file
|
@ -0,0 +1,9 @@
|
|||
@import "src/styles/variables";
|
||||
|
||||
.wrap {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: flex-start;
|
||||
margin: $gap * 2 0 0 0;
|
||||
padding: 0 $gap;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue