// 模态框底部按钮样式
.modalFooterBtn {
:global {
.ant-modal-confirm-btns,
.ant-modal-footer {
display: flex;
justify-content: flex-start;
flex-direction: row-reverse;
.ant-btn {
background-color: #e5e5e5;
color: #252525;
border-color: #e5e5e5;
min-width: 72px;
&:focus,
&:hover {
background-color: #f2f2f2;
color: #252525;
border-color: #f2f2f2;
}
}
.ant-btn-primary {
order: 0;
margin-right: 12px;
color: #fff;
background-color: #256ffc;
border-color: #256ffc;
transition: all 0.3s;
&:focus,
&:hover {
color: #fff;
background-color: #4584fc;
border-color: #4584fc;
}
}
}
}
}