Skip to content

Commit

Permalink
Fix prototype kit test
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Sep 21, 2023
1 parent 6ee6909 commit f3e6d01
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/prototype-kit-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ runs:
echo -e "{% from \"nationalarchives/components/hero/macro.njk\" import tnaHero %}\n$(cat prototype/app/views/index.html)" > prototype/app/views/index.html &&
echo -e "{% from \"nationalarchives/components/index-grid/macro.njk\" import tnaIndexGrid %}\n$(cat prototype/app/views/index.html)" > prototype/app/views/index.html &&
echo -e "{% from \"nationalarchives/components/message/macro.njk\" import tnaMessage %}\n$(cat prototype/app/views/index.html)" > prototype/app/views/index.html &&
echo -e "{% from \"nationalarchives/components/pagination/macro.njk\" import tnaMessage %}\n$(cat prototype/app/views/index.html)" > prototype/app/views/index.html &&
echo -e "{% from \"nationalarchives/components/pagination/macro.njk\" import tnaPagination %}\n$(cat prototype/app/views/index.html)" > prototype/app/views/index.html &&
echo -e "{% from \"nationalarchives/components/phase-banner/macro.njk\" import tnaPhaseBanner %}\n$(cat prototype/app/views/index.html)" > prototype/app/views/index.html &&
echo -e "{% from \"nationalarchives/components/picture/macro.njk\" import tnaPicture %}\n$(cat prototype/app/views/index.html)" > prototype/app/views/index.html &&
echo -e "{% from \"nationalarchives/components/profile/macro.njk\" import tnaProfile %}\n$(cat prototype/app/views/index.html)" > prototype/app/views/index.html &&
Expand Down
11 changes: 10 additions & 1 deletion src/nationalarchives/components/pagination/pagination.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

.tna-pagination {
display: flex;
gap: 1rem;
gap: 0.5rem;
align-items: center;
justify-content: center;
flex-wrap: wrap;
Expand Down Expand Up @@ -48,6 +48,7 @@

display: flex;
align-items: center;
// gap: 0.125rem;

list-style: none;
}
Expand All @@ -65,6 +66,14 @@
}
}

&__item--current &__link {
// border-color: transparent !important;
}

&__item &__link {
// @include colour.colour-border("keyline-dark", 0.125rem);
}

&__prev &__link,
&__next &__link,
&__item:not(&__item--current) &__link {
Expand Down

0 comments on commit f3e6d01

Please sign in to comment.