HTML
<div class="margin-top-10">
<span us-spinner="{left: '91.6%',top:'74.2%',length: 5,width: 2,radius:4}" spinner-key="spinner-1"></span>
<button class="btn btn-green" ng-click="">Send</button>
</div>
I've implemented the angular spinner feature above and it's working perfectly. However, I'm facing an issue where the position of the spinner has to be continuously adjusted when content is added to the page, specifically with the top
property. How can I ensure that the spinner always stays on top of the button (Send) without needing manual adjustments? Any advice would be greatly appreciated. Thank you in advance.