22 lines
457 B
Plaintext
22 lines
457 B
Plaintext
.radio-button-wrap {
|
|
.item {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: var(--font-size-base);
|
|
border-radius: var(--border-radius-base);
|
|
height: 32px;
|
|
padding: 0 8px;
|
|
border: 1px solid var(--ant-color-border);
|
|
cursor: pointer;
|
|
|
|
&.active {
|
|
background-color: var(--ant-color-fill-secondary);
|
|
}
|
|
|
|
&:hover {
|
|
background-color: var(--ant-color-fill-secondary);
|
|
}
|
|
}
|
|
}
|