4

在此处输入图像描述安装 ng-select 后:

npm install --save @ng-select/ng-select

我正在将材质样式导入到 styles.scss 中:

@import "~@ng-select/ng-select/themes/material.theme.css";

身体 {

但毕竟,该组件以非常奇怪的外观呈现。

查看 node_modules 文件夹我看不到 ng-select 文件夹来查看它的主题文件夹。

请问有什么想法吗?

4

2 回答 2

6

解决了:

@import "~@ng-select/ng-select/themes/material.theme.css"; at styles.css 

style="font-family: roboto" at the ng-select tag
于 2018-10-16T18:31:38.340 回答
0

在 Angular 13 中,将此代码添加到 angular.json 样式块中:

       "styles": [
         ....
         ....
          "node_modules/@ng-select/ng-select/themes/default.theme.css",
        ],
于 2022-02-07T04:25:12.287 回答