I'm currently working on a project utilizing AngularJS
and Bootstrap to create a dynamic form. My goal is to have an 'edit' button
display when a user hovers over a specific row of the form. However, I'm facing an issue where the row's size changes when the button appears or disappears, which is not the desired behavior.
I thought setting a minimum height for the row would solve the problem, like so:
ng-style="{'min-height': '40px'}"
Unfortunately, when I added this code to the 'div class="row"' element, it caused some issues, as demonstrated in this fiddle.
If anyone has insights into what I might be doing wrong and can offer a viable solution, I would greatly appreciate it.