gpt4 book ai didi

css 不从 .scss 文件中获取 css

转载 作者:太空宇宙 更新时间:2023-11-03 22:15:01 24 4
gpt4 key购买 nike

不确定我错过了什么......

我确实尝试过在 .scss 文件中使用 css 和 scss 以及不同的组合。我仍然没有看到(在 Inspect Element 中)它正在从 Bootstrap 中获取 css。

是的,我在相应的路径中有引导 css 和 scss 文件。

Angular .json

   "styles": [
"src/styles.scss",
"node_modules/bootstrap/scss/bootstrap.scss",
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"node_modules/font-awesome/css/font-awesome.min.css"
],
"scripts": [
"node_modules/jquery/dist/jquery.min.js",
"node_modules/bootstrap/dist/js/bootstrap.min.js"
]

样式.scss

@import '~bootstrap/scss/bootstrap';
@import "~bootstrap/scss/functions";
@import "~bootstrap/scss/variables";
@import "~bootstrap/scss/mixins";
@import "~bootstrap/scss/grid";
@import "~bootstrap/scss/navbar";
@import "~bootstrap/scss/forms";
@import '~bootstrap/scss/bootstrap.scss';

@import "styles-variables.scss";
@import "~@angular/material/prebuilt-themes/indigo-pink.css";
@import "~ng-pick-datetime/assets/style/picker.min.css";

enter image description here

我的其他应用看起来不错 enter image description here

一些信息,如果可以提供任何线索。不确定是不是因为 mat-side-nav enter image description here

最佳答案

要在您的应用程序中使用Bootstrap 样式,您需要:

  1. 首先需要安装Bootstrap:npm install –save bootstrap

  2. 您应该在 styles.scss 中添加导入:

    @import "~bootstrap/dist/css/bootstrap.css";
  3. angular.json文件中加入样式声明:

    ...
    "styles": [
    "node_modules/bootstrap/dist/css/bootstrap.min.css",
    "src/styles.scss"
    ],
    ...

关于css 不从 .scss 文件中获取 css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57203242/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com