Skip to content

Commit

Permalink
chore(tests): update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
tw15egan committed Aug 27, 2020
1 parent 86a470d commit 45d91b2
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
5 changes: 3 additions & 2 deletions packages/components/docs/sass.md
Original file line number Diff line number Diff line change
Expand Up @@ -9035,7 +9035,7 @@ $productive-heading-06: if(
(
font-size: 2.625rem,
font-weight: 300,
line-height: 1.19,
line-height: 1.199,
letter-spacing: 0,
)
);
Expand Down Expand Up @@ -12760,7 +12760,8 @@ $productive-heading-05: (
$productive-heading-06: (
font-size: carbon--type-scale(8),
font-weight: carbon--font-weight('light'),
line-height: 1.19,
// Extra digit needed for precision in Chrome
line-height: 1.199,
letter-spacing: 0,
);
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ exports[`_grid.scss should generate grid code when the grid feature flag is on 1
"h1 {
font-size: 2.625rem;
font-weight: 300;
line-height: 1.19;
line-height: 1.199;
letter-spacing: 0; }
h2 {
Expand Down
5 changes: 3 additions & 2 deletions packages/elements/docs/sass.md
Original file line number Diff line number Diff line change
Expand Up @@ -8289,7 +8289,7 @@ $productive-heading-06: if(
(
font-size: 2.625rem,
font-weight: 300,
line-height: 1.19,
line-height: 1.199,
letter-spacing: 0,
)
);
Expand Down Expand Up @@ -12010,7 +12010,8 @@ $productive-heading-05: (
$productive-heading-06: (
font-size: carbon--type-scale(8),
font-weight: carbon--font-weight('light'),
line-height: 1.19,
// Extra digit needed for precision in Chrome
line-height: 1.199,
letter-spacing: 0,
);
```
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/docs/sass.md
Original file line number Diff line number Diff line change
Expand Up @@ -4725,7 +4725,7 @@ $productive-heading-06: if(
(
font-size: 2.625rem,
font-weight: 300,
line-height: 1.19,
line-height: 1.199,
letter-spacing: 0,
)
);
Expand Down
3 changes: 2 additions & 1 deletion packages/type/docs/sass.md
Original file line number Diff line number Diff line change
Expand Up @@ -2568,7 +2568,8 @@ $productive-heading-05: (
$productive-heading-06: (
font-size: carbon--type-scale(8),
font-weight: carbon--font-weight('light'),
line-height: 1.19,
// Extra digit needed for precision in Chrome
line-height: 1.199,
letter-spacing: 0,
);
```
Expand Down

0 comments on commit 45d91b2

Please sign in to comment.