diff --git a/src/components/pull-to-refresh.css b/src/components/pull-to-refresh.css new file mode 100644 index 000000000..68b2d9b8c --- /dev/null +++ b/src/components/pull-to-refresh.css @@ -0,0 +1,4 @@ +.ptr, +.ptr__children { + @apply !overflow-visible; +} \ No newline at end of file diff --git a/src/components/pull-to-refresh.tsx b/src/components/pull-to-refresh.tsx index 3d53fe0c7..7ea8ca528 100644 --- a/src/components/pull-to-refresh.tsx +++ b/src/components/pull-to-refresh.tsx @@ -2,6 +2,8 @@ import PTRComponent from 'react-simple-pull-to-refresh'; import Spinner from 'soapbox/components/ui/spinner.tsx'; +import './pull-to-refresh.css'; + interface IPullToRefresh { onRefresh?: () => Promise; refreshingContent?: JSX.Element | string;