From 65047a840940de2b8ae0a2402dd339d741409b57 Mon Sep 17 00:00:00 2001 From: basara669 Date: Thu, 8 Jun 2017 17:48:11 +0900 Subject: [PATCH] added P191 comment --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/README.md b/README.md index 04cc91c..dfbe2f1 100644 --- a/README.md +++ b/README.md @@ -468,6 +468,39 @@ modulesではなく、componentsが正しいです。 ``` + +#### P191 `_iconPanel.scss`内 +`$color-gray`とするべきところが、`$color-link`となっている + +##### 誤 + +```scss +.IconPanel { + (省略) + &__icon { + margin-bottom: $space-unit; + padding: $sp-space-unit; + font-size: 26px; + color: $color-link; //$color-grayが正しい + } + (省略) +} +``` + +##### 正 +```scss +.IconPanel { + (省略) + &__icon { + margin-bottom: $space-unit; + padding: $sp-space-unit; + font-size: 26px; + color: $color-gray; + } + (省略) +} +``` + #### P192 上部HTML ##### 誤