We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa96510 commit 4ace52bCopy full SHA for 4ace52b
src/components/Sidebar.tsx
@@ -92,6 +92,12 @@ export const Sidebar = () => {
92
</Tooltip>
93
</div>
94
{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>
101
</Sider>
102
);
103
};
src/styles/sidebar.module.scss
@@ -25,3 +25,21 @@
25
padding-left: 10px;
26
padding-right: 10px;
27
}
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
40
+ text-decoration: none;
41
+ font-weight: bold;
42
+ }
43
44
45
+}
0 commit comments