This commit is contained in:
Suvodip
2024-08-02 18:19:11 +05:30
parent c1d6350b2b
commit 768a1fc0d9
7 changed files with 370 additions and 132 deletions

View File

@@ -0,0 +1,24 @@
.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%);
}