队伍界面6格觉醒不要设定8格的长度

This commit is contained in:
枫谷剑仙 2022-08-10 13:33:03 +08:00
parent 38b7789876
commit ed238b1883
3 changed files with 9 additions and 6 deletions

View File

@ -452,7 +452,7 @@ label[for="box-have"]::after
}
.open-evolutionary-tree::before
{
content: "⛓️Evo Search";
content: "⛓️Show Evo Tree";
}
.search-evolution-by-this::after
{

View File

@ -6079,7 +6079,7 @@ const cachesMap = new Map([
],
[
"style.css",
"3d3f6a98a5eaf30d26449f8737b52daf"
"4c71826a15ff417ff92f449abc2a8f16"
],
[
"temp.js",
@ -6091,7 +6091,7 @@ const cachesMap = new Map([
],
[
"languages/en.css",
"adf0868fa109527316309d05da9c7e6a"
"a0e99cbe80895139c745a8eb824434f7"
],
[
"languages/en.js",

View File

@ -1070,17 +1070,20 @@ icon.inflicts::after
width: 152px;
transform: scale(0.65);
transform-origin: left top;
margin-left: 5px;
margin-left: 6px;
margin-bottom: calc(-64px * (1 - 0.65) + 1px);
/*margin: calc(-64px * (1 - 0.63) / 2 + 3px) calc((108px - 152px) / 2);*/
/*-152 * (1 - 0.63) + 108 - 152 * 0.63化简为108 - 152*/
min-height: 47px; /* 为了防止只有一层6格大潜觉的时候被缩减太多的问题*/
/*潜在觉醒布局,使用 gird*/
display: inline-grid;
grid-template-columns: repeat(4, 32px);
display: grid;
grid-template-columns: repeat(3, 32px);
grid-auto-rows: 32px;
grid-gap: 3px 6px;
}
.team-latents .latent-ul.block-8{
grid-template-columns: repeat(4, 32px);
}
.team-latents .latent-icon[data-latent-hole="1"] {
grid-column: span 1;
}