mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
login mechanism
This commit is contained in:
parent
6168841f78
commit
9528e7f699
27 changed files with 528 additions and 96 deletions
|
@ -1,12 +1,12 @@
|
|||
import * as React from 'react';
|
||||
import { Logo } from "$components/main/Logo";
|
||||
|
||||
const style = require('./style.scss');
|
||||
|
||||
export const Header = () => (
|
||||
<div className="default_container head_container">
|
||||
<div className={style.container}>
|
||||
<div className={style.logo}>
|
||||
VAULT
|
||||
</div>
|
||||
<Logo />
|
||||
<div className={style.spacer} />
|
||||
<div className={style.plugs}>
|
||||
<div>depth</div>
|
||||
|
|
|
@ -7,11 +7,6 @@
|
|||
height: 100px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
font-size: 1.4em;
|
||||
font-weight: 800;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.spacer {
|
||||
flex: 1;
|
||||
|
@ -36,7 +31,12 @@
|
|||
display: block;
|
||||
}
|
||||
|
||||
&:last-child::after { display: none; }
|
||||
&:last-child {
|
||||
padding-right: 0;
|
||||
|
||||
&::after { display: none; }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
8
src/components/main/Logo/index.tsx
Normal file
8
src/components/main/Logo/index.tsx
Normal file
|
@ -0,0 +1,8 @@
|
|||
import * as React from 'react';
|
||||
const style = require('./style.scss');
|
||||
|
||||
export const Logo = () => (
|
||||
<div className={style.logo}>
|
||||
VAULT
|
||||
</div>
|
||||
);
|
5
src/components/main/Logo/style.scss
Normal file
5
src/components/main/Logo/style.scss
Normal file
|
@ -0,0 +1,5 @@
|
|||
.logo {
|
||||
font-size: $text_sign;
|
||||
font-weight: 800;
|
||||
display: flex;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue