Skip to content

Commit 4ace52b

Browse files
committed
Add "More tools" section to Sidebar with RewardMatrix link
1 parent aa96510 commit 4ace52b

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

src/components/Sidebar.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,12 @@ export const Sidebar = () => {
9292
</Tooltip>
9393
</div>
9494
{generateAddSectionModal()}
95+
<div className={styles.moreFromCreator}>
96+
<p>More tools:</p>
97+
<a href="https://www.rewardmatrix.in/" target="_blank" rel="noreferrer">
98+
- RewardMatrix
99+
</a>
100+
</div>
95101
</Sider>
96102
);
97103
};

src/styles/sidebar.module.scss

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,21 @@
2525
padding-left: 10px;
2626
padding-right: 10px;
2727
}
28+
29+
.moreFromCreator {
30+
margin-top: 30px !important;
31+
padding: 10px;
32+
margin-left: 16px;
33+
margin-right: 16px;
34+
color: white;
35+
background: rgba(255, 255, 255, 0.2);
36+
37+
38+
a {
39+
color: white;
40+
text-decoration: none;
41+
font-weight: bold;
42+
}
43+
44+
45+
}

0 commit comments

Comments
 (0)