select 风格问题
Ng-select style issue
安装 ng-select 后:
npm install --save @ng-select/ng-select
我正在将 material 样式导入 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
在Angular13
在您的 angular.json 样式块中添加此代码:
"styles": [
....
....
"node_modules/@ng-select/ng-select/themes/default.theme.css",
],
npm install --save @ng-select/ng-select
我正在将 material 样式导入 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
在Angular13 在您的 angular.json 样式块中添加此代码:
"styles": [
....
....
"node_modules/@ng-select/ng-select/themes/default.theme.css",
],