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>
13 lines
236 B
SCSS
13 lines
236 B
SCSS
// icon widths
|
|
// -------------------------
|
|
@use 'variables' as v;
|
|
|
|
.#{v.$css-prefix}-width-auto {
|
|
--#{v.$css-prefix}-width: auto;
|
|
}
|
|
|
|
.#{v.$css-prefix}-fw,
|
|
.#{v.$css-prefix}-width-fixed {
|
|
--#{v.$css-prefix}-width: #{v.$fw-width};
|
|
}
|