直接height: calc(100% - $top-main-height);
这样写是不生效的
sass并不会在calc中解析变量,必须使用sass插值的方式编写
sass的插值方法: (#{$variable})
上述代码更正后:
height: calc(100% - #{$top-main-height});
sass仓库相关issue地址: https://github.com/sass/sass/issues/2166#issuecomment-254511098
🎨 原创不易,支持请点赞、转载请注明本文作者为子成君