Need to decrease the size of checkbox, but it isn’t decreasing on changing its height, width or size values.
Hi @Aman Kumar BhardwajAdd the below CSS to the screeninput.checkbox::before { width: 11px; height: 11px;}input.checkbox:checked::after { width: 7px;}[data-checkbox]:checked::after { left: 2px; top: 2px; width: 12px;}You can check the demo to see how it will work through below link.https://personal-qmzjggmd.outsystemscloud.com/Com/Checkbox?_ts=638200039395800366RegardsKrishnanand Pathak
Thanks @Krishnanand PathakThe size has been decreased, but the tick in the checkbox is not aligned to the box, This is what I'm getting: I need this:Can you please suggest a way to achieve this with checkbox in the screen?
You need to adjust the position left and top based on size of you Checkbox of below CSS[data-checkbox]:checked::after { left: 2px; top: 2px; width: 12px;}