Skip to content

Commit 97398f0

Browse files
DanielRufDSchau
authored andcommitted
Remove wrong CSS font-color property (#11047)
Fix CSS line-height property name Remove unused longhand CSS padding properties <!-- Have any questions? Check out the contributing docs at https://gatsby.app/contribute, or ask in this Pull Request and a Gatsby maintainer will be happy to help :) --> ## Description This PR fixes a few CSS issues that were found during an analysis. <!-- Write a brief description of the changes introduced by this PR --> ## Related Issues <!-- Link to the issue that is fixed by this PR (if there is one) e.g. Fixes #1234, Addresses #1234, Related to #1234, etc. -->
1 parent 416a216 commit 97398f0

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

examples/using-javascript-transforms/src/components/SiteLinks/style.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,4 @@
2525

2626
.blog-social ul > li:hover a > i {
2727
color: #444;
28-
font-color: #444;
2928
}

examples/using-javascript-transforms/src/components/SiteNav/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
.blog-nav ul li a {
1212
font-size: 16px;
13-
line-heigh: 26px;
13+
line-height: 26px;
1414
margin-bottom: 26px;
1515
border-bottom: 0;
1616
font-weight: 400;

starters/default/src/components/layout.css

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -398,10 +398,6 @@ pre {
398398
margin-left: 0;
399399
margin-right: 0;
400400
margin-top: 0;
401-
padding-bottom: 0;
402-
padding-left: 0;
403-
padding-right: 0;
404-
padding-top: 0;
405401
margin-bottom: 1.45rem;
406402
font-size: 0.85rem;
407403
line-height: 1.42;

0 commit comments

Comments
 (0)