Skip to content

Commit 6ddc896

Browse files
committed
fix: replace deprecated Sass unquote() with string.unquote()
1 parent 82c5f33 commit 6ddc896

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Bulma Changelog
22

3+
# 1.0.5
4+
5+
### Bug Fixes
6+
7+
- Fix #4006: (fixes #4009) Use String.unquote for Dart compatibility
8+
39
## 1.0.4
410

511
### New Features

sass/utilities/css-variables.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
@function getRgbaVar($name, $alpha, $prefix: "", $suffix: "") {
3333
$varName: buildVarName($name, $prefix, $suffix);
34-
@return unquote("rgba(var(#{$varName}), #{$alpha})");
34+
@return string.unquote("rgba(var(#{$varName}), #{$alpha})");
3535
}
3636

3737
@mixin register-var($name, $value, $prefix: "", $suffix: "") {

0 commit comments

Comments
 (0)