Bootstrap and custom CSS are being used for buttons, but there is an issue.
<button type="button"
class="dropdown-item">
<span (click)="showI('test_data)"
class="text-capitalize">
{{ selectedAction(singleBook.href) }}
</span>
</button>
What seems to be the problem? The button has a width of 200px. However, the span within it only has a width of 50px, causing the rest of the button area to be unclickable... The goal is for the span button to occupy the entire width of the button...
Attempts like 'width: 100%;' or 'max-width: 100%' have not been successful...