I'm trying to align a set of buttons, each containing an information icon, vertically under each other. The current alignment can be seen in image_1 below.
Can someone please provide me with guidance on how to achieve this using CSS and HTML? I was thinking about setting equal margins from the left side starting from the checkbox, but I'm not sure how to implement it.
Here is the HTML markup for the buttons:
<button class="btn btn-sm btn-icon" (click)="showInformation('SERVICE_SYNOPS_AGGREGATED_AREAS')">
<clr-icon shape="help-info" class="is-solid"></clr-icon>
</button>
<button class="btn btn-sm btn-icon" (click)="showInformation('SERVICE_SYNOPS_AGRICULTURAÖ_AREAS')">
<clr-icon shape="help-info" class="is-solid"></clr-icon>
</button>
<button class="btn btn-sm btn-icon" (click)="showInformation('SERVICE_SYNOPS_WATER_AREAS')">
<clr-icon shape="help-info" class="is-solid"></clr-icon>
</button>
img_1: