Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! X
Hi everyone,
How I can change the size dimensions on Toogle Button?
Has anyone found the CSS solution for this?
Thank you!
Solved! Go to Solution.
Try this:
ptcs-toggle-button::part(rectangle){
width: 100px !important;
height: 50px !important;
}
ptcs-toggle-button::part(oval){
width: 50px !important;
height: 40px !important;
}
Try this:
ptcs-toggle-button::part(rectangle){
width: 100px !important;
height: 50px !important;
}
ptcs-toggle-button::part(oval){
width: 50px !important;
height: 40px !important;
}
Thank you so much!! Worked perfectly