队伍界面6格觉醒不要设定8格的长度
This commit is contained in:
parent
38b7789876
commit
ed238b1883
|
@ -452,7 +452,7 @@ label[for="box-have"]::after
|
||||||
}
|
}
|
||||||
.open-evolutionary-tree::before
|
.open-evolutionary-tree::before
|
||||||
{
|
{
|
||||||
content: "⛓️Evo Search";
|
content: "⛓️Show Evo Tree";
|
||||||
}
|
}
|
||||||
.search-evolution-by-this::after
|
.search-evolution-by-this::after
|
||||||
{
|
{
|
||||||
|
|
|
@ -6079,7 +6079,7 @@ const cachesMap = new Map([
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"style.css",
|
"style.css",
|
||||||
"3d3f6a98a5eaf30d26449f8737b52daf"
|
"4c71826a15ff417ff92f449abc2a8f16"
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"temp.js",
|
"temp.js",
|
||||||
|
@ -6091,7 +6091,7 @@ const cachesMap = new Map([
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"languages/en.css",
|
"languages/en.css",
|
||||||
"adf0868fa109527316309d05da9c7e6a"
|
"a0e99cbe80895139c745a8eb824434f7"
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"languages/en.js",
|
"languages/en.js",
|
||||||
|
|
|
@ -1070,17 +1070,20 @@ icon.inflicts::after
|
||||||
width: 152px;
|
width: 152px;
|
||||||
transform: scale(0.65);
|
transform: scale(0.65);
|
||||||
transform-origin: left top;
|
transform-origin: left top;
|
||||||
margin-left: 5px;
|
margin-left: 6px;
|
||||||
margin-bottom: calc(-64px * (1 - 0.65) + 1px);
|
margin-bottom: calc(-64px * (1 - 0.65) + 1px);
|
||||||
/*margin: calc(-64px * (1 - 0.63) / 2 + 3px) calc((108px - 152px) / 2);*/
|
/*margin: calc(-64px * (1 - 0.63) / 2 + 3px) calc((108px - 152px) / 2);*/
|
||||||
/*-152 * (1 - 0.63) + 108 - 152 * 0.63,化简为108 - 152*/
|
/*-152 * (1 - 0.63) + 108 - 152 * 0.63,化简为108 - 152*/
|
||||||
min-height: 47px; /* 为了防止只有一层6格大潜觉的时候,被缩减太多的问题*/
|
min-height: 47px; /* 为了防止只有一层6格大潜觉的时候,被缩减太多的问题*/
|
||||||
/*潜在觉醒布局,使用 gird*/
|
/*潜在觉醒布局,使用 gird*/
|
||||||
display: inline-grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(4, 32px);
|
grid-template-columns: repeat(3, 32px);
|
||||||
grid-auto-rows: 32px;
|
grid-auto-rows: 32px;
|
||||||
grid-gap: 3px 6px;
|
grid-gap: 3px 6px;
|
||||||
}
|
}
|
||||||
|
.team-latents .latent-ul.block-8{
|
||||||
|
grid-template-columns: repeat(4, 32px);
|
||||||
|
}
|
||||||
.team-latents .latent-icon[data-latent-hole="1"] {
|
.team-latents .latent-icon[data-latent-hole="1"] {
|
||||||
grid-column: span 1;
|
grid-column: span 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue