You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 26, 2018. It is now read-only.
Similar to #645 but using Sass w/ Compass instead of being a vanilla app
Steps to reproduce
Create a new yeoman app w/ sass and bootstrap options:
% yo angular ng-app
[?] Would you like to use Sass (with Compass)? Yes
[?] Would you like to include Bootstrap? Yes
Run:
% grunt serve
Problem
When I look at the local app the icon fonts don't seem to be working:
Solution
To get it working I changed the first line in app/styles/main.scss
FROM $icon-font-path: "../bower_components/bootstrap-sass-official/vendor/assets/fonts/bootstrap/";
TO $icon-font-path: "../../bower_components/bootstrap-sass-official/assets/fonts/bootstrap/";
This worked for me, but I'm not sure if it is the right solution. If you think this is a good solution let me know and I can make a PR.
Thanks!
The text was updated successfully, but these errors were encountered:
Similar to #645 but using Sass w/ Compass instead of being a vanilla app
Steps to reproduce
Create a new yeoman app w/ sass and bootstrap options:
% yo angular ng-app
[?] Would you like to use Sass (with Compass)? Yes
[?] Would you like to include Bootstrap? Yes
Run:
% grunt serve
Problem

When I look at the local app the icon fonts don't seem to be working:
Solution
To get it working I changed the first line in app/styles/main.scss
FROM
$icon-font-path: "../bower_components/bootstrap-sass-official/vendor/assets/fonts/bootstrap/";
TO
$icon-font-path: "../../bower_components/bootstrap-sass-official/assets/fonts/bootstrap/";
This worked for me, but I'm not sure if it is the right solution. If you think this is a good solution let me know and I can make a PR.
Thanks!
The text was updated successfully, but these errors were encountered: