From 9d1e48ee905e5bd9e3d16018442c0768fa9c65bc Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Fri, 10 Apr 2020 13:42:16 +0200 Subject: [PATCH] Updated main list paginator to be sticky --- src/short-urls/Paginator.js | 3 ++- src/short-urls/Paginator.scss | 7 +++++++ src/short-urls/ShortUrls.js | 6 ++++-- 3 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 src/short-urls/Paginator.scss diff --git a/src/short-urls/Paginator.js b/src/short-urls/Paginator.js index 46783dc7..dd976954 100644 --- a/src/short-urls/Paginator.js +++ b/src/short-urls/Paginator.js @@ -3,6 +3,7 @@ import { Link } from 'react-router-dom'; import { Pagination, PaginationItem, PaginationLink } from 'reactstrap'; import PropTypes from 'prop-types'; import { isPageDisabled, keyForPage, progressivePagination } from '../utils/helpers/pagination'; +import './Paginator.scss'; const propTypes = { serverId: PropTypes.string.isRequired, @@ -36,7 +37,7 @@ const Paginator = ({ paginator = {}, serverId }) => { )); return ( - + { return (
- - +
+ + +
); };