@hlf-fe/pulmo-ui 1.4.0 → 1.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -61,6 +61,7 @@ const StyledButton = styled.button `
61
61
  ${({ theme, inverted, fullWidth }) => css `
62
62
  ${media.M `
63
63
  width: ${fullWidth ? "100%" : "fit-content"};
64
+ font-size: ${rem(18)};
64
65
  `}
65
66
 
66
67
  &:not(:disabled) {
@@ -1,6 +1,7 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import styled, { css } from "styled-components";
3
3
  import { rem } from "../../../styles/units";
4
+ import { media } from "../../../styles/mixins";
4
5
  import { Link } from "gatsby";
5
6
  export const TextButton = ({ type = "button", onClick, onMouseEnter, onMouseLeave, className, disabled, dataTest, children, to, href, target, tabIndex, }) => {
6
7
  const commonProps = {
@@ -58,4 +59,8 @@ const StyledTextButton = styled.button `
58
59
  text-decoration: none;
59
60
  }
60
61
  }
62
+
63
+ ${media.M `
64
+ font-size: ${rem(18)}
65
+ `}
61
66
  `;
@@ -20,7 +20,7 @@ export const H2 = styled.h2 `
20
20
 
21
21
  ${media.L `
22
22
  font-size: ${rem(32)};
23
- line-height: 1.5;
23
+ line-height: 1.25;
24
24
  `}
25
25
  `;
26
26
  export const H3 = styled.h3 `
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hlf-fe/pulmo-ui",
3
3
  "private": false,
4
- "version": "1.4.0",
4
+ "version": "1.4.1",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",