Skip to content

Commit

Permalink
added P191 comment
Browse files Browse the repository at this point in the history
  • Loading branch information
basara669 committed Jun 8, 2017
1 parent 897125c commit 65047a8
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
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 65047a8

Please sign in to comment.