[master | FIXED | DONE] add margin between indicator buttons

This commit is contained in:
Alex Martzios 2024-01-11 10:41:39 +02:00
parent 5cbc5f9a77
commit 4533970798
1 changed files with 3 additions and 3 deletions

View File

@ -126,18 +126,18 @@
</div>
<div class="uk-position-bottom-left uk-margin-left uk-margin-small-bottom uk-visible@m">
<a *ngIf="indicator.description || indicator.additionalDescription"
class="uk-display-inline-block uk-button uk-button-link"
class="uk-display-inline-block uk-button uk-button-link uk-margin-right"
(click)="toggleOverlay($event, indicator, 'desc')">
<span class="uk-flex uk-flex-middle">
<icon name="analytics" type="outlined" [flex]="true"></icon>
<span class="uk-margin-small-left">Note</span>
<span class="uk-margin-xsmall-left">Note</span>
</span>
</a>
<a class="uk-display-inline-block uk-button uk-button-link"
(click)="toggleOverlay($event, indicator, 'embed')">
<span class="uk-flex uk-flex-middle">
<icon name="code" type="outlined" [flex]="true"></icon>
<span class="uk-margin-small-left">Embed</span>
<span class="uk-margin-xsmall-left">Embed</span>
</span>
</a>
</div>