Getting started with 1Password for your growing team, or refining your setup? Our Secured Success quickstart guide is for you.
Forum Discussion
Former Member
2 years ago1Password button overlaps with show/hide button
Couldn't find a discussion or resource for this particular problem, sorry if it's a commonly asked question.
I'm developing the frontend of a webapp and I realized in the local developer version, ...
diginja
2 years agoNew Contributor
We also had the issue but since the show/hide password button is custom (not generated by the browser), I managed to adapt the position of the button for users having 1password, using the power of the new ":has()" CSS pseudo selector with something like this:
body:has(com-1password-button) .show-password-action {
right: 40px;
}