4

enter image description hereAfter install ng-select with :

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

I'm importing the material style to styles.scss with :

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

body {

But after all, the component is being presented with a very strange appearance.

Lookin at node_modules folder I can't see the ng-select folder to look at it's themes folder.

Any ideas please ?

GCoe
  • 849
  • 4
  • 14
  • 30

2 Answers2

10

Solved with :

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

and

style="font-family: roboto" at the ng-select tag
GCoe
  • 849
  • 4
  • 14
  • 30
2

In Angular 13 Add this code in your angular.json styles block :

       "styles": [
         ....
         ....
          "node_modules/@ng-select/ng-select/themes/default.theme.css",
        ],
Mathulan
  • 196
  • 6