Good afternoon, I'm trying to work with bootstrap-sass
and sass
, but when I include an icon in my class, nothing happens.
I do not know if this is the case but for the backend I'm using django 1.9.
@import "../vendor/bootstrap/assets/stylesheets/_bootstrap-sprockets.scss";
@import "../vendor/bootstrap/assets/stylesheets/_bootstrap.scss";
.tablestyle{
@extend .col-md-6, .col-md-offset-2;
.table{
@extend .table, .table-striped;
.info{
@extend .btn, .btn-info, .btn-xs;
}
.edit{
@extend .glyphicon, .glyphicon-edit;
}
}
}