Skip to content
This repository was archived by the owner on Feb 18, 2021. It is now read-only.

Commit 4e14f6c

Browse files
mtabernakontrollanten
authored andcommitted
feat(sidebar): improve settings button style
1 parent 6371c41 commit 4e14f6c

File tree

3 files changed

+1641
-6
lines changed

3 files changed

+1641
-6
lines changed

src/renderer/components/Sidebar/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ const Sidebar = ({
3434

3535
<Link
3636
to="/settings"
37-
className={[styles.SettingsTab, styles.tab].join(' ')}
37+
className={[styles.SettingsTab]}
3838
>
39-
S
39+
settings
4040
</Link>
4141
</div>;
4242

src/renderer/components/Sidebar/style.scss

+11-4
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,16 @@
4848
}
4949

5050
.SettingsTab {
51-
@extend %tab-shared;
52-
5351
font-size: 12px;
54-
background-color: #5e63a5;
55-
margin-top: auto;
52+
text-decoration: none;
53+
color: #fff;
54+
cursor: pointer;
55+
font-size: 12px;
56+
margin: auto 20px 20px;
57+
58+
&:hover {
59+
text-decoration: underline;
60+
text-underline-position: under;
61+
}
62+
5663
}

0 commit comments

Comments
 (0)