Skip to content

Commit

Permalink
fix: pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
HuberTRoy authored and jamesbayly committed Nov 8, 2023
1 parent d00e2a2 commit cb8e78c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions docs/.vuepress/public/assets/style/homepage.css
Original file line number Diff line number Diff line change
Expand Up @@ -523,6 +523,14 @@ footer {
-webkit-box-orient: vertical;
}

.faqs .title span {
cursor: pointer;
}

.faqs .title img {
pointer-events: none;
}

@media screen and (min-width: 1920px) {
.layout {
max-width: 1185px;
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ editLink: false
<div v-for="network in networkFamily.quick_start_data" :key="network.name">
<router-link v-for="quickStart in network.quick_start_data" :key="quickStart.name" :to="quickStart.link.replace('https://academy.subquery.network', '')">
<div>
<img v-if="quickStart.logo" :src="network.logo" width="24" height="24">
<img v-if="quickStart.logo" :src="network.logo" width="24" height="24" style="pointer-events: none;">
<div v-if="!quickStart.logo" style="width: 24px; height: 24px; background: #fff;border-radius: 50%;"></div>
<span class="overflow3">{{ quickStart.name }}</span>
</div>
Expand Down

0 comments on commit cb8e78c

Please sign in to comment.