dui-react
Version:
design your ui --base on react
29 lines • 704 B
text/less
.button_group {
display: inline-flex;
text-align: center;
justify-content: center;
align-items: center; // color: #eef9fe;
&>div {
display: inline-block;
}
.radio {
display: inline-block;
border: 1px solid #e9e9e9;
background: #fff;
padding: 2px 5px;
outline: none;
cursor: pointer;
margin: 0px 0px 0px -1px;
&.active {
background: #f4f8ff;
color: #6c91df;
}
&:first-child {
margin-left: 0px;
border-radius: 4px 0 0 4px;
}
&:last-child {
border-radius: 0 4px 4px 0;
}
}
}