From 97398f09d5b93b395e14e957c82ae68daba098a4 Mon Sep 17 00:00:00 2001 From: Daniel Ruf Date: Mon, 14 Jan 2019 18:09:17 +0100 Subject: [PATCH] Remove wrong CSS font-color property (#11047) Fix CSS line-height property name Remove unused longhand CSS padding properties ## Description This PR fixes a few CSS issues that were found during an analysis. ## Related Issues --- .../src/components/SiteLinks/style.css | 1 - .../src/components/SiteNav/style.css | 2 +- starters/default/src/components/layout.css | 4 ---- 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/examples/using-javascript-transforms/src/components/SiteLinks/style.css b/examples/using-javascript-transforms/src/components/SiteLinks/style.css index c4a88505f24f1..8f385a4ee93cb 100644 --- a/examples/using-javascript-transforms/src/components/SiteLinks/style.css +++ b/examples/using-javascript-transforms/src/components/SiteLinks/style.css @@ -25,5 +25,4 @@ .blog-social ul > li:hover a > i { color: #444; - font-color: #444; } diff --git a/examples/using-javascript-transforms/src/components/SiteNav/style.css b/examples/using-javascript-transforms/src/components/SiteNav/style.css index dc8f86e995bfb..4588f82097a40 100644 --- a/examples/using-javascript-transforms/src/components/SiteNav/style.css +++ b/examples/using-javascript-transforms/src/components/SiteNav/style.css @@ -10,7 +10,7 @@ } .blog-nav ul li a { font-size: 16px; - line-heigh: 26px; + line-height: 26px; margin-bottom: 26px; border-bottom: 0; font-weight: 400; diff --git a/starters/default/src/components/layout.css b/starters/default/src/components/layout.css index 68aa9337485f7..6ca5b70d7a97f 100644 --- a/starters/default/src/components/layout.css +++ b/starters/default/src/components/layout.css @@ -398,10 +398,6 @@ pre { margin-left: 0; margin-right: 0; margin-top: 0; - padding-bottom: 0; - padding-left: 0; - padding-right: 0; - padding-top: 0; margin-bottom: 1.45rem; font-size: 0.85rem; line-height: 1.42;