generated from dwd/boilarplate-remix-tailwind-antd
24 lines
517 B
CSS
24 lines
517 B
CSS
.custom-radio {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
width: 29.47px;
|
|
height: 29.47px;
|
|
border: 2px solid #ccc;
|
|
border-radius: 50%;
|
|
position: relative;
|
|
}
|
|
|
|
/* Create the inner circle for checked state */
|
|
.custom-radio:checked::before {
|
|
content: '';
|
|
display: block;
|
|
width: 12.74px;
|
|
height: 12.74px;
|
|
background-color: #000;
|
|
border-radius: 50%;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
} |