Skip to content

Commit

Permalink
fix(AboutPage): 修复外部链接样式不生效的问题
Browse files Browse the repository at this point in the history
根据 `/src/styles/reset.less`,外部样式列表需要在 `<p>` 标签中才会生效,
然而在 prettier 对代码进行格式化时(详见 30b2f6c)错误地移除了这个 `<p>
标签,从而导致该问题,故此 commit 将其加回。

Signed-off-by: crrashh1542 <[email protected]>
  • Loading branch information
crrashh1542 committed Jun 9, 2024
1 parent a9a1180 commit 60ac9f6
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/views/MainAbout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,13 @@ const sources = [
</p>
<p>以下为该仓库数据的数据来源,由衷感谢:</p>

<p></p>
<ul>
<li v-for="s in sources" :key="s.value">
<a target="_blank" class="link" :href="s[0]">{{ s[1] }}</a>
</li>
</ul>
<p>
<ul>
<li v-for="s in sources" :key="s.value">
<a target="_blank" class="link" :href="s[0]">{{ s[1] }}</a>
</li>
</ul>
</p>

<p>
Windows 为 Microsoft Corporation 的注册商标,本项目与 Microsoft
Expand Down

0 comments on commit 60ac9f6

Please sign in to comment.