Skip to content

Commit 5f2c9c2

Browse files
committed
fix social link clickability and invite path
1 parent b36a7f3 commit 5f2c9c2

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

src/components/Home/index.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,14 +108,11 @@ export default function Home({ recentPosts }) {
108108
<a href="https://instagram.com/3dstreetapp" target="_blank">
109109
<InstagramIcon />
110110
</a>
111-
<a href="https://discord.com/invite/9DgKkFCetC" target="_blank">
111+
<a href="https://discord.gg/zNFMhTwKSd" target="_blank">
112112
<DiscordIcon />
113113
</a>
114114
</aside>
115115

116-
<div className="down_icon">
117-
<ArrowIcon />
118-
</div>
119116
</div>
120117
</header>
121118

src/css/styles.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,22 @@ main {
7777
right: 0;
7878
top: 400px;
7979
position: absolute;
80+
z-index: 10;
81+
}
82+
83+
.st_header_container .socials a {
84+
display: flex;
85+
justify-content: center;
86+
align-items: center;
87+
width: 40px;
88+
height: 40px;
89+
cursor: pointer;
90+
}
91+
92+
.st_header_container .socials svg {
93+
width: 100%;
94+
height: 100%;
95+
pointer-events: none;
8096
}
8197

8298
.st_header_container .socials svg:hover * {

0 commit comments

Comments
 (0)