@zhangqingcq/plug-r-qw
Version:
A JS lib base on Vue and View-design, you can achieve some complex functions with simple code after install this lib.
39 lines (32 loc) • 600 B
text/less
/**
* created 2020.08.31
* @author ricky zhangqingcq@foxmail.com
*/
@import '../common/color';
@import '../common/size';
.formModal {
.ivu-modal .ivu-modal-content {
.ivu-modal-body {
max-height: calc(100vh - 240px);
overflow-y: auto;
}
.ivu-modal-footer {
text-align: center;
}
}
.ivu-btn {
&.modal-save-btn {
background-color: @primary;
color: #fff;
min-width: @btnW;
&:hover {
background-color: #fff;
color: @primary;
border-color: @primary;
}
}
&.modal-cancel-btn {
min-width: @btnW;
}
}
}