Skip to content

Commit

Permalink
解决首页不显示的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Mapaler committed Jul 29, 2024
1 parent 6b8f8a1 commit 783c6ad
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
<noscript>您的浏览器不支持 JavaScript!<br/>Your browser does not support JavaScript!</noscript>
<h1 class="title">智龙急速阵型<br>Puzzle & Dragons Dash Formation</h1>
<ul class="control-box">
<li><a id="btn-solo-link" href="solo.html"><!--单人模式--></a></li>
<li><a id="btn-multi-link" href="multi.html"><!--多人模式--></a></li>
<li><a id="btn-triple-link" href="triple.html"><!--三人模式--></a></li>
<li><a href="solo.html"><!--单人模式--><label for="player-number-1"></label></a></li>
<li><a href="multi.html"><!--多人模式--><label for="player-number-2"></label></a></li>
<li><a href="triple.html"><!--三人模式--><label for="player-number-3"></label></a></li>
<li><br></li>
<li><a class="btn-guide-link" href="solo.html?guide=1"><!--图鉴模式--> - パズル&ドラゴンズ</a></li>
<li><a class="btn-guide-link" href="solo.html?guide=1&s=en"><!--图鉴模式--> - Puzzle & Dragons</a></li>
Expand Down
7 changes: 5 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ input[type="checkbox"].switch-ipt+label::before{
width: 2em;
height: 1.1em;
border-radius: 0.5em;
background-image: radial-gradient(white 40%, black 50%, transparent 50%);
background-image: radial-gradient(white 40%, black 50%, transparent 55%);
background-size: 1.1em 1.1em;
background-repeat: no-repeat;
transition: .3s ease-out;
Expand Down Expand Up @@ -3145,8 +3145,11 @@ a.series-search::before {
font-family: var(--font-family);
}
.team-awoken-effect>ul {
--gap: 3px;
display: grid;
grid-template-columns: repeat(6, 110px);
gap: var(--gap);
margin-bottom: var(--gap);
grid-template-columns: repeat(6, calc(var(--head-block-width) - var(--gap)));
}
.team-awoken-effect .team-flags {
display: inline-flex;
Expand Down

0 comments on commit 783c6ad

Please sign in to comment.