npm install --save @ng-select/ng-select
我正在将材质样式导入到 styles.scss 中:
@import "~@ng-select/ng-select/themes/material.theme.css";
身体 {
但毕竟,该组件以非常奇怪的外观呈现。
查看 node_modules 文件夹我看不到 ng-select 文件夹来查看它的主题文件夹。
请问有什么想法吗?
npm install --save @ng-select/ng-select
我正在将材质样式导入到 styles.scss 中:
@import "~@ng-select/ng-select/themes/material.theme.css";
身体 {
但毕竟,该组件以非常奇怪的外观呈现。
查看 node_modules 文件夹我看不到 ng-select 文件夹来查看它的主题文件夹。
请问有什么想法吗?
解决了:
@import "~@ng-select/ng-select/themes/material.theme.css"; at styles.css
和
style="font-family: roboto" at the ng-select tag
在 Angular 13 中,将此代码添加到 angular.json 样式块中:
"styles": [
....
....
"node_modules/@ng-select/ng-select/themes/default.theme.css",
],