ng-bootstrap - Typeahead dropdown width

前端 未结 7 828
我在风中等你
我在风中等你 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:02

    This is how I made it work within responsive col :

    ::ng-deep ngb-typeahead-window.dropdown-menu {
        width: calc(100% - 30px);
    }
    

    or

    ::ng-deep .dropdown-menu.show {
        width:calc(100% - 30px);
    }
    

    Not sure which one is the best option but I tend to think of the first one.

提交回复
热议问题