diff --git a/src/components/Pagination/_pagination.scss b/src/components/Pagination/_pagination.scss index 10a1148a..7007f1af 100644 --- a/src/components/Pagination/_pagination.scss +++ b/src/components/Pagination/_pagination.scss @@ -29,13 +29,19 @@ appearance: none; border: none; font-variation-settings: 'wght' 600; - line-height: 2.5rem; + line-height: 1.75rem; margin-bottom: 0; outline: none; + padding: 0 $spacing-xsm; text-align: center; text-align-last: center; text-decoration: underline; - text-underline-offset: 10px; + text-underline-offset: 6px; + + @include isHeaderDesktop { + line-height: 2.5rem; + text-underline-offset: 10px; + } &:disabled { border: 1px solid $medium-gray; diff --git a/src/index.ts b/src/index.ts index 7ba4e957..682d82d5 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,6 +9,7 @@ export { default as Page } from './pages/Page'; // utils export * from './utils/hooks'; +export * from './providers/SeldonProvider/utils'; // ⚛️ Components export { default as Button, type ButtonProps } from './components/Button/Button';