Merge multiple Sass maps

前端 未结 3 716
误落风尘
误落风尘 2021-01-05 19:21

I have three Sass maps that I want to merge into one map. With the map-merge function I can only merge two maps together. How can I merge more than two maps?

A short

3条回答
  •  一个人的身影
    2021-01-05 19:32

    If map-merge takes 2 mappings and returns a single mapping, but you have 3 mappings... you use map-merge twice.

    $color: map-merge(map-merge($color-name, $color-event), $color-category);
    

提交回复
热议问题