manabuyasuda / dorcss

DORCSS(ドールシーエスエス)はRole(役割)を分担・分割(Division)することで影響範囲を管理する、CSS設計の構成案です。
MIT License
5 stars 0 forks source link

[add] .l-contentに具体的な余白の指定方法を追加 #18

Closed manabuyasuda closed 7 years ago

manabuyasuda commented 7 years ago

.l-content__itemにも内包するコンポーネントに対する余白の指定をする。

.l-content__item {
  margin-bottom: 1.6rem;
}
.l-content__item {
  margin-bottom: 1.6rem;
  & > :last-child {
    margin-bottom: 0;
}

<section>で使うような.l-content__sectionにもmargin-topなどを指定をする。