Skip to content

Commit

Permalink
ssh check
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoskutik committed Oct 1, 2023
1 parent 7b52bdf commit 6bbdd68
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
21 changes: 15 additions & 6 deletions packages/docs/src/components/Pagination/Pagination.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@

&_right {
justify-content: flex-end;

.icon {
margin: 0 0 0 16px;
}
}
}

Expand All @@ -42,10 +38,23 @@

.icon {
color: var(--base-text-color);
margin: 0 16px 0 0;
font-size: 32px;
margin: 0 8px 0 0;
font-size: 24px;

&_left {
transform: rotate(180deg);
}

&_right {
margin: 0 0 0 8px;
}

@media screen and (min-width: 768px) {
margin: 0 16px 0 0;
font-size: 32px;

&_right {
margin: 0 0 0 16px;
}
}
}
2 changes: 1 addition & 1 deletion packages/docs/src/components/Pagination/Pagination.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const Pagination = ({ links }: Props) => {
<b className={styles.linkTitle}>NEXT</b>
<span className={styles.linkContent}>{links[currentIndex + 1].title}</span>
</div>
<Chevron className={styles.icon} />
<Chevron className={clsx(styles.icon, styles.icon_right)} />
</Link>
) : (
<div />
Expand Down

0 comments on commit 6bbdd68

Please sign in to comment.