list.nth
没有导致错误,但map.set
是,不知道为什么(新的sass)。
@use "sass:map";
@use "sass:list";
$fontSizes: (200, 300, 400, 500, 600, 700, 800, 900);
@function createFontSizes($baseFontSize, $multiplier) {
$temp: ();
@for $i from 1 through length($fontSizes) {
$current: list.nth($fontSizes, $i);
map.set($temp, $current, $baseFontSize * $multiplier * $i);
};
@return $temp;
}
错误
Error: expected "$".
╷
10 │ map.set($temp, $current, $baseFontSize * $multiplier * $i);
│ ^
╵
1条答案
按热度按时间pgvzfuti1#