Skip to content

Commit

Permalink
FOUR-19233 Buttons Conceal and Reveal are not the Same as in Figma
Browse files Browse the repository at this point in the history
  • Loading branch information
julceslauhub committed Oct 8, 2024
1 parent 7cc2935 commit 81b4360
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/components/renderer/form-masked-input.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
/>
<b-button variant="outline-secondary conceal-reveal-btn" @click="concealOrReveal">
<i :class="iconBtn"></i>
{{ labelBtn }}
<span> {{ labelBtn }} </span>
</b-button>
</div>

Expand Down Expand Up @@ -478,7 +478,12 @@ export default {
width: 100%;
}
.conceal-reveal-btn {
width: 20%;
width: 25%;
margin-left: 5px;
}
@media screen and (max-width: 1000px) {
.conceal-reveal-btn span {
display: none;
}
}
</style>

0 comments on commit 81b4360

Please sign in to comment.