h1 ui component
This commit is contained in:
parent
0287041cc8
commit
ce2708239a
19
ui/src/components/h1/index.js
Normal file
19
ui/src/components/h1/index.js
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
const fns = require('../../shared/functions');
|
||||||
|
const Styled = require('styled-components');
|
||||||
|
|
||||||
|
const {
|
||||||
|
remcalc
|
||||||
|
} = fns;
|
||||||
|
|
||||||
|
const {
|
||||||
|
default: styled
|
||||||
|
} = Styled;
|
||||||
|
|
||||||
|
module.exports = styled.h1`
|
||||||
|
font-size: ${remcalc(36)};
|
||||||
|
font-weight: 600;
|
||||||
|
font-style: normal;
|
||||||
|
font-stretch: normal;
|
||||||
|
color: #364acd;
|
||||||
|
border-bottom: 1px solid #d8d8d8;
|
||||||
|
`;
|
Loading…
Reference in New Issue
Block a user