Skip to content

Commit

Permalink
Merge pull request #11 from basara669/modify_170608
Browse files Browse the repository at this point in the history
P191のコメント追加
  • Loading branch information
basara669 committed Jun 8, 2017
2 parents 897125c + 65047a8 commit fd5c80b
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions README.md
Expand Up @@ -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
#####

Expand Down

0 comments on commit fd5c80b

Please sign in to comment.