pl-fe: visual fix

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk
2025-08-24 20:43:56 +02:00
parent ccca69ca0b
commit 84e8caf42b
12 changed files with 12 additions and 12 deletions

View File

@ -90,7 +90,7 @@ const BookmarksPage: React.FC<IBookmarks> = ({ params }) => {
>
<PullToRefresh onRefresh={handleRefresh}>
<StatusList
loadMoreClassName='black:sm:mx-4'
loadMoreClassName='sm:pb-4 black:sm:pb-0 black:sm:mx-4'
statusIds={statusIds}
scrollKey='bookmarked_statuses'
hasMore={hasNextPage}

View File

@ -31,7 +31,7 @@ const QuotesPage: React.FC = () => {
<Column label={intl.formatMessage(messages.heading)}>
<PullToRefresh onRefresh={handleRefresh}>
<StatusList
loadMoreClassName='black:sm:mx-4'
loadMoreClassName='sm:pb-4 black:sm:pb-0 black:sm:mx-4'
statusIds={statusIds}
scrollKey={`quotes:${statusId}`}
hasMore={hasNextPage}

View File

@ -40,7 +40,7 @@ const BubbleTimelinePage = () => {
<Column className='-mt-3 sm:mt-0' label={intl.formatMessage(messages.title)}>
<PullToRefresh onRefresh={handleRefresh}>
<Timeline
loadMoreClassName='black:sm:mx-4'
loadMoreClassName='sm:pb-4 black:sm:pb-0 black:sm:mx-4'
scrollKey={`${timelineId}_timeline`}
timelineId={`${timelineId}${onlyMedia ? ':media' : ''}`}
prefix='home'

View File

@ -98,7 +98,7 @@ const CircleTimelinePage: React.FC = () => {
action={<DropdownMenu items={items} src={require('@tabler/icons/outline/dots-vertical.svg')} />}
>
<Timeline
loadMoreClassName='black:sm:mx-4'
loadMoreClassName='sm:pb-4 black:sm:pb-0 black:sm:mx-4'
scrollKey='circle_timeline'
timelineId={`circle:${id}`}
onLoadMore={handleLoadMore}

View File

@ -38,7 +38,7 @@ const CommunityTimelinePage = () => {
<Column className='-mt-3 sm:mt-0' label={intl.formatMessage(messages.title)}>
<PullToRefresh onRefresh={handleRefresh}>
<Timeline
loadMoreClassName='black:sm:mx-4'
loadMoreClassName='sm:pb-4 black:sm:pb-0 black:sm:mx-4'
scrollKey={`${timelineId}_timeline`}
timelineId={`${timelineId}${onlyMedia ? ':media' : ''}`}
prefix='home'

View File

@ -65,7 +65,7 @@ const HashtagTimelinePage: React.FC<IHashtagTimelinePage> = ({ params }) => {
</List>
)}
<Timeline
loadMoreClassName='black:sm:mx-4'
loadMoreClassName='sm:pb-4 black:sm:pb-0 black:sm:mx-4'
scrollKey='hashtag_timeline'
timelineId={`hashtag:${tagId}`}
onLoadMore={handleLoadMore}

View File

@ -59,7 +59,7 @@ const HomeTimelinePage: React.FC = () => {
<Column className='py-0' label={intl.formatMessage(messages.title)} withHeader={false}>
<PullToRefresh onRefresh={handleRefresh}>
<Timeline
loadMoreClassName='black:sm:mx-4'
loadMoreClassName='sm:pb-4 black:sm:pb-0 black:sm:mx-4'
scrollKey='home_timeline'
onLoadMore={handleLoadMore}
timelineId='home'

View File

@ -100,7 +100,7 @@ const LandingTimelinePage = () => {
{timelineEnabled && !timelineFailed ? (
<PullToRefresh onRefresh={handleRefresh}>
<Timeline
loadMoreClassName='black:sm:mx-4'
loadMoreClassName='sm:pb-4 black:sm:pb-0 black:sm:mx-4'
scrollKey={`${timelineId}_timeline`}
timelineId={timelineId}
prefix='home'

View File

@ -36,7 +36,7 @@ const LinkTimelinePage: React.FC<ILinkTimelinePage> = ({ params }) => {
label={intl.formatMessage(messages.header, { url: url.replace(/^https?:\/\//, '') })}
>
<Timeline
loadMoreClassName='black:sm:mx-4'
loadMoreClassName='sm:pb-4 black:sm:pb-0 black:sm:mx-4'
scrollKey='link_timeline'
timelineId={`link:${url}`}
onLoadMore={handleLoadMore}

View File

@ -101,7 +101,7 @@ const ListTimelinePage: React.FC = () => {
action={<DropdownMenu items={items} src={require('@tabler/icons/outline/dots-vertical.svg')} />}
>
<Timeline
loadMoreClassName='black:sm:mx-4'
loadMoreClassName='sm:pb-4 black:sm:pb-0 black:sm:mx-4'
scrollKey='list_timeline'
timelineId={`list:${id}`}
onLoadMore={handleLoadMore}

View File

@ -85,7 +85,7 @@ const PublicTimelinePage = () => {
</div>}
<PullToRefresh onRefresh={handleRefresh}>
<Timeline
loadMoreClassName='black:sm:mx-4'
loadMoreClassName='sm:pb-4 black:sm:pb-0 black:sm:mx-4'
scrollKey={`${timelineId}_timeline`}
timelineId={`${timelineId}${onlyMedia ? ':media' : ''}`}
prefix='home'

View File

@ -64,7 +64,7 @@ const RemoteTimelinePage: React.FC<IRemoteTimelinePage> = ({ params }) => {
)}
<Timeline
loadMoreClassName='black:sm:mx-4'
loadMoreClassName='sm:pb-4 black:sm:pb-0 black:sm:mx-4'
scrollKey={`${timelineId}_${instance}_timeline`}
timelineId={`${timelineId}${onlyMedia ? ':media' : ''}:${instance}`}
onLoadMore={handleLoadMore}