ng-bootstrap - Typeahead dropdown width

前端 未结 7 877
我在风中等你
我在风中等你 2021-01-18 06:34

I started using the ng-bootstrap Typeahead component and I\'m pretty happy with that.

One thing I would like to achieve is to get the dropdown items to have the same

7条回答
  •  独厮守ぢ
    2021-01-18 07:16

    Using scss should do the trick. Find the parent div in your dom, and give it a class 'dropdown-wrapper'.

    .dropdown-wrapper {
      .dropdown-menu {
        width: 90%;
      }
    }
    

    Add this to your global scss. Cheers!

提交回复
热议问题