Skip to content

Commit

Permalink
fix: Add horizontal margins to PaginationRow component (#1970)
Browse files Browse the repository at this point in the history
* fix: Add horizontal margins to PaginationRow component

* fixing margin of next/previous buttons
  • Loading branch information
jespino authored Dec 10, 2024
1 parent 04f92ef commit 09772ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@ server/e2etest.config.json

# Notice
.notice-work
.aider*
.env
3 changes: 1 addition & 2 deletions webapp/src/components/pagination_row.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@ import {FormattedMessage} from 'react-intl';
import styled from 'styled-components';

const PaginationRowDiv = styled.div`
margin: 10px 0 20px;
margin: 10px 16px 20px;
font-size: 14px;
display: grid;
align-items: center;
grid-template-columns: minmax(20rem, min-content) auto minmax(20rem, min-content);
justify-content: space-between;
padding: 0 2px;
`;

const Count = styled.span`
Expand Down

0 comments on commit 09772ec

Please sign in to comment.