Created
August 31, 2015 09:43
-
-
Save JLHwung/6b58d3d5b01bb2a932c6 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
// snippet from bootstrap-sass-official 3.3.5 breadcrumb component | |
// See https://github.com/sass/libsass/issues/1271 | |
$seperator: '/'; | |
.breadcrumb > li + li:before { | |
/* Expected: "/\00a0" */ | |
content: "#{$seperator}\00a0"; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.breadcrumb > li + li:before { | |
/* Expected: "/\00a0" */ | |
content: "/\\00a0"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment