Skip to content

Commit

Permalink
Fix dragging create annpotation button for padding pixels
Browse files Browse the repository at this point in the history
  • Loading branch information
jorg-vr committed Sep 12, 2023
1 parent 2faf152 commit 6273553
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,11 @@ export class CreateAnnotationButton extends ShadowlessLitElement {
@pointerover=${() => userAnnotationState.isCreateButtonExpanded = true}
@pointerout=${() => userAnnotationState.isCreateButtonExpanded = false}
>
<button class="btn btn-fab-small-flex"
<a class="btn btn-fab-small-flex"
@pointerup=${() => this.openForm()}>
<span class="text">${this.buttonText}</span>
<i class="mdi mdi-comment-plus-outline "></i>
</button>
</a>
</div>
</div>`;
}
Expand Down

0 comments on commit 6273553

Please sign in to comment.