mdn / developer-portal

The code that generates the MDN Web Docs Developer Portal.
Mozilla Public License 2.0
61 stars 38 forks source link

Pagination wording #1734

Closed schalkneethling closed 4 years ago

schalkneethling commented 4 years ago

A small update to the copy used on the buttons for the pagination component.

Currently, the buttons read "Prev" and "Next". It would be better to spell out "Previous" instead. The only downside is that this causes the two buttons to be of different widths.

We can remedy this by setting a min-width on the buttons, however, we do not want to meddle with the protocol framework code so, we can do the following:

.pagination-block {
  .mzp-c-button {
    min-width: 130px;
    text-align: center;
  }
}