Skip to content

Commit 5a6c03d

Browse files
authored
Merge pull request #2967 from RedisInsight/fe/feature/RI-5341-tutorials-btns
#RI-5341 - reduce size for back/next buttons
2 parents 6aa5b0b + 7134093 commit 5a6c03d

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

redisinsight/ui/src/components/database-side-panels/panels/enablement-area/EnablementArea/components/InternalPage/InternalPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ const InternalPage = (props: Props) => {
205205
{!!pagination?.length && (
206206
<>
207207
<div className={styles.footer}>
208-
<Pagination sourcePath={sourcePath} items={pagination} activePageKey={activeKey} />
208+
<Pagination sourcePath={sourcePath} items={pagination} activePageKey={activeKey} compressed />
209209
</div>
210210
</>
211211
)}

redisinsight/ui/src/components/database-side-panels/panels/enablement-area/EnablementArea/components/Pagination/styles.module.scss

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,15 @@
1313
}
1414

1515
.paginationCompressed {
16-
padding: 8px 6px;
16+
padding: 8px 16px;
1717
& > div:first-of-type, & > div:last-of-type {
1818
min-width: 70px;
1919
}
20+
21+
:global(.euiButtonContent .euiIcon) {
22+
width: 14px;
23+
height: 14px;
24+
}
2025
}
2126

2227
.panel {

0 commit comments

Comments
 (0)