From ce2708239a3b4f1a7b551e7e81c352909ff57762 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Ramos?= Date: Thu, 15 Dec 2016 14:07:53 +0000 Subject: [PATCH] h1 ui component --- ui/src/components/h1/index.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ui/src/components/h1/index.js diff --git a/ui/src/components/h1/index.js b/ui/src/components/h1/index.js new file mode 100644 index 00000000..1d0a3319 --- /dev/null +++ b/ui/src/components/h1/index.js @@ -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; +`;