Bootstrap

Vue项目中修改antd提供的组件样式

Vue项目中修改antd提供的组件样式😨

<style lang="scss" scoped>
/deep/ .ant-select-selection {
	border-radius: 0px 4px 4px 0px
}
</style>

style标签中加 lang=“scss” 属性;
标签选择器中增加 /deep/ :深度获取该选择器
.ant-select-selection:为antd中组件标签

;