Does anyone know how to fix the alignment of Toogle Show Password widget?

0
I am using an SVG 18x18, the documentation says to put the toolbox close to the password textbox, so far this is my result... Could anybody please show me how to fix this or edit the alignment of the icon? 
asked
2 answers
1

You can put that element on its own layout grid and then align it. Or just like the Email field which is its own container, you can wrap your elements in its container.

giving negative styles is not a good practice.

 

EDIT:

I just looked at the css on the togglepassword widget and its little not very self explannatory.

So as a quick fix, just add the below styles in your main.scss file ( App > Styling > Web > main.scss) which should do the needful for you now.

 

.toggle-password-button {
    top: unset;
    right: 24px;
}

 

answered
0

Hii Francisco Quintero, You can give style (position : "relative") to password widget and style (position:"absolute";right :10px) to toggle password widget .

 

Hope, this will help you.

answered