gilbitron / laravel-vue-pagination

A Vue.js pagination component for Laravel paginators
https://laravel-vue-pagination.org
MIT License
750 stars 143 forks source link

Remove current string #139

Closed lucabecchetti closed 2 years ago

lucabecchetti commented 2 years ago

How can i remove (current) string?

gilbitron commented 2 years ago

The "current" string should be hidden by bootstraps .sr-only class, as it's only for screen readers. To implement this manually you could do:

.sr-only {
    display: none;
}