_components.page__nav.scss 359 B

12345678910111213141516171819
  1. /**
  2. * Styling for the Next Page / Previous Page links at the bottom of textbook
  3. * pages.
  4. */
  5. $color-nav-links: rgba(0, 140, 255, 0.7);
  6. .c-page__nav__prev,
  7. .c-page__nav__next {
  8. flex: 1;
  9. color: $color-nav-links;
  10. border: 1px solid $color-nav-links;
  11. border-radius: 3px;
  12. padding: $spacing-unit-small 0;
  13. }
  14. .c-page__nav__next {
  15. text-align: right;
  16. }