Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ng-select style issue

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 ?

like image 400
GCoe Avatar asked Sep 11 '25 13:09

GCoe


1 Answers

Solved with :

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

and

style="font-family: roboto" at the ng-select tag
like image 83
GCoe Avatar answered Sep 13 '25 04:09

GCoe