1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-10 21:30:06 +02:00

h1 ui component

This commit is contained in:
Sérgio Ramos 2016-12-15 14:07:53 +00:00
parent 0287041cc8
commit ce2708239a

View 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;
`;