1.做个记录,有时候需要一些自定义样式的时候可以快速更改
【注意】:因为使用的是global样式穿透,为了防止污染其他组件,需要在引用antd组件时再包裹一层<div></div>
.curstom {
:global {
//设置未展开时的样式
.ant-select {
height: 3.5vh;
width: 250px;
border: 2px solid #064c70;
}
//设置背景色和居中对齐
.ant-select-selector {
height: 3.5vh !important;
background-color: #013269 !important;
align-items: center;
}
//设置option的样式 文字
.ant-select-selection-item {
padding-right: 0;
text-align: center;
@include fontSize($select);
font-family: Source Han Sans CN;
font-weight: 400;
color: #16d0ff;
}
}
}
//下拉框的样式
.optionCustom {
width: 200px;
//background: rgba(22, 208, 255, 0.1) !important;
}
//单个option的样式
.dropdown {
min-height: 3vh !important;
line-height: 3vh !important;
text-align: center;
@include fontSize($tiptitle);
font-family: Source Han Sans CN;
font-weig