sass-maps Questions
2
Solved
My goal is to generate a SASS map to store variants of colors that are stored in the following map:
$colors : (
jet : #333333,
wintergreen-dream : #588C73,
eton-blue : #8FC0A9,
sunglow : #F...
2
Solved
The example given by the sass map.set documentation doesn't work, why is that?
@use "sass:map";
$font-weights: (
'regular': 400,
'medium': 500,
'bold': 700
);
map.set($font-weights, ...
Likewise asked 27/1, 2021 at 1:39
1
Solved
Problem: map.get() doesn't work. map-get() does work.
I set up a map of color values and created a simple function to retrieve them.
While doing the retrieval, I followed the Sass documentation whi...
Curate asked 5/10, 2020 at 14:13
1
Is there something like is-map($some_variable) in SASS?
I have tried looking into the documentation but there is none there.
1
© 2022 - 2024 — McMap. All rights reserved.