Theme small not working on vaadin-combo-box

Hello,

Unfortunately, as far as I can tell, vaadin-combo-box doesn’t have a small theme yet.

The good thing is that you can always build it yourself. :slight_smile:

<dom-module id="small-combo-box" theme-for="vaadin-combo-box">
  <template>
    <style>
      :host([theme~="small"]
) {
        ...
      }
    </style>
  </template>
</dom-module>