我遇到以下错误: '标题字体'
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) => {
});
}
答案 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 */
}