Currently, I am working on an application using angular 8. In the app, there is a form that includes several buttons. I am looking for a solution to make these buttons responsive on mobile devices when viewed in Chrome and Firefox browsers. Here is the current setup:
https://i.sstatic.net/olkPk.png
Here is the code snippet:
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<div class="row justify-content-around">
<button (click)="register()" class="btn btn-outline-primary col-4"> Submiiiiiiiiit </button>
<button type="submit" class="btn btn-primary col-4"> Validate </button>
</div>
The first button appears misaligned while the second button looks fine. It seems like the text length might be causing the issue.
Any suggestions or guidance would be greatly appreciated. Thank you.