Partially fixes issue #3256 by updating SASS syntax in main SCSS files. To fully address the issue, FontAwesome should be updated to `v7.x` and Tabler to `v3.30` or higher (see Tabler fix [here](https://github.com/tabler/tabler-icons/pull/1256)), where the SCSS has been fixed. --------- Signed-off-by: George Araújo <george.gcac@gmail.com> Co-authored-by: George Araújo <george.gcac@gmail.com>
9 lines
203 B
SCSS
9 lines
203 B
SCSS
// functions
|
|
// --------------------------
|
|
@use "sass:string";
|
|
|
|
// fa-content: convenience function used to set content property
|
|
@function fa-content($var) {
|
|
@return string.unquote("\"#{ $var }\"");
|
|
}
|