Skip to content
On this page

antd覆盖组件样式

css
.customSelect {
  :global {
    .ant-select-selection {
      max-height: 51px;
      overflow: auto;
    }
  }
}

引入的antd组件类名没有被CSS Modules转化,所以被覆盖的类名.ant-select-selection必须放到:global中 因为上一条的关系,覆盖是全局性的。为了防止对其他Select组件造成影响,所以需要包裹额外的className限制样式的生效范围

更新时间: