Skip to content
Snippets Groups Projects
Commit 2dd1b00a authored by Chris Lawton's avatar Chris Lawton
Browse files

adding styles for pagination

parent 64072631
No related branches found
No related tags found
No related merge requests found
.pagination {
@extend %h6;
display: flex;
align-items: center;
justify-content: center;
margin-top: 30px;
.cardinality {
margin: 0 10px;
}
.prev,
.next {
a {
position: relative;
display: block;
width: 55px;
height: 55px;
color: $color--white;
background: $color--white;
border: 1px solid $color--mid-grey;
&::after {
position: absolute;;
top: 18.5px;
left: 22.5px;
}
}
}
.prev {
a {
&::after {
@include triangle(left, $color--primary, 7px);
}
}
}
.next {
a {
&::after {
@include triangle(right, $color--primary, 7px);
}
}
}
}
......@@ -13,6 +13,7 @@
// Components
@import 'components/button';
@import 'components/icon';
@import 'components/pagination';
@import 'components/table';
@import 'components/wrapper';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment