kandarp
kandarp

Reputation: 1101

Change size of paper-toggle-button

I am new in Polymer,

I have added paper-toggle-button in my project.I found css classes on official website to change color and transition animation. However I want to reduce it in size especially by some pixels.

I have search through web. But did not successes.

Please help

Upvotes: 0

Views: 481

Answers (1)

rajashekar
rajashekar

Reputation: 689

you can change the size by applying mixins, add the following code to your css styles

paper-toggle-button {
    --paper-toggle-button-unchecked-button: {
        width: 30px;
        height: 30px;
    }
    --paper-toggle-button-unchecked-bar: {
        width: 30px;
        height: 30px;
    }
}

Upvotes: 2

Related Questions