Skip to content

Commit

Permalink
Fix oddly aligned pager
Browse files Browse the repository at this point in the history
Signed-off-by: Hidde de Vries <hidde@hiddedevries.nl>
  • Loading branch information
hidde committed Sep 23, 2021
1 parent 2604c73 commit e34a7d8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Note: this changelog starts from 3.0.0, as it is built from scratch and therefore the code has no meaningful shared history with the 2.0.0 version. The 2.0.0 version of this tool lives in [w3c/wcag-em-report-tool](https://github.com/w3c/wcag-em-report-tool/) and has its own changelog there.

## 3.0.1

### Fixed

* Pager was oddly aligned on page 1, because of max-width on list items

## 3.0.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "WCAG-EM-Report-Tool",
"version": "3.0.0",
"version": "3.0.1",
"repository": {
"type": "git",
"url": "git://github.com/w3c/wcag-em-report-tool.git"
Expand Down
3 changes: 3 additions & 0 deletions src/components/ui/Pager.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@
.Pager {
grid-column: 2 / 10;
}
:global(.app-container .pager--item) {
max-width: none;
}
</style>

<script>
Expand Down

0 comments on commit e34a7d8

Please sign in to comment.