Currently, I am utilizing the information found at https://angular-ui.github.io/bootstrap/#!#getting_started to set up pagination on my website.
Implementing pagination was simple with the following code:
<uib-pagination ng-change="pageChanged()" max-size="5" total-items="100" ng-model="currentPage" items-per-page="5"></uib-pagination>
While the generated links have the default bootstrap styles, I am interested in applying custom CSS styles to these links. Any guidance on how this can be achieved?