0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Sass Mapで同じスタイルの繰り返し記述を省略する

Last updated at Posted at 2019-11-21
app.scss

.footer {
  padding: 70px 0;

  @mixin btn($color) {
    display: block;
    padding: 20px 30px;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    background-color: $color;
    text: {
      decoration: none;
      align: center;
    }
  }

  $map: (
    facebook: #4668b3,
    google: #de5745,
    twitter: #2fbbed,
    pinterest: #d94348,
    behance: #3079ff,
    dribbble: #eb6397
  );

  &__sns {
  	&__list {
  	  display: flex;
  	  justify-content: space-between;
  	  flex-wrap: wrap;

  	  & > li {
  	    width: 32%;
  	    &:nth-child(n+4){
  	  	  margin-top: 20px;
  	    }
  	  }
  	}

  	&__btn {
  	  @each $class, $color in $map {
     	&.is-#{$class}{ // ★
      @include btn(map-get($map, $class));
  	  	}
  	  }
  	}
  }
}

:star: ここをハッシュで書く理由。

&.is-#{$class}
:fist_tone3: Sassは補完を行うための構文として#{}を用意している。
変数に入った文字列は通常は値として認識されてエラーが出てしまうので、そのままだとプロパティの値にしか使用できませんが、 シャープ記号を前に置いた波括弧 #{}と組み合わせることでセレクタやプロパティ名にも使うことができるようになります。

map-get(); $mapの中から$keyに対応した値を取得する。

map操作関数について詳しくは以下 :point_down_tone4:
Sassのmap操作をおさらいする+便利な関数をいくつか

参考

Sassを使うメリットとよく使う機能を5つだけ厳選!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?