我有以下“标题字体”

时间:2019-02-15 12:32:15

标签: css sass ruby-on-rails-5 bootstrap-sass

我遇到以下错误:   '标题字体'

ul.quicklinks {

swal({
        title   : "Um produto escolhido não foi o mais barato!",
        text    : "Para continuar será necessário informar uma 
                 justificativa, desejá continuar? \n\nProdutos:",
        icon    : "warning",
        buttons : {  
            cancel  : "Cancelar",
            confirm : "Confirmar",
        },
        content : {
            element    : "input",
            attributes : {
                placeholder : "Informe a justificativa...",
                type        : "text",
            },
        },
        closeOnClickOutside : false,
        closeOnEsc          : false,
})
.then((value) => {

});

}

1 个答案:

答案 0 :(得分:1)

在先导入任何scss文件之前,不能使用mixin。

@import 'mixins.scss'; /* imports the SCSS file with the mixin */

ul.quicklinks {
    font-size: 90%;
    line-height: 40px;
    margin-bottom: 0;
    text-transform: none;
    @include heading-font; /* using the mixin */
}