_functions.scss 349 B

1234567891011
  1. // Functions
  2. // --------------------------
  3. // Helper function which adds quotes to preserve unicode values in CSS output.
  4. //
  5. // See: https://github.com/sass/sass/issues/1395
  6. // See: https://stackoverflow.com/questions/30421570/sass-unicode-escape-is-not-preserved-in-css-file
  7. @function fa-content($fa-var) {
  8. @return unquote("\"#{$fa-var}\"");
  9. }