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