Browse Source

潜觉改成优先纵向排列

tags/v25.2
枫谷剑仙 3 years ago
parent
commit
aa89d41f8a
2 changed files with 5 additions and 3 deletions
  1. +1
    -1
      service-worker.js
  2. +4
    -2
      style.css

+ 1
- 1
service-worker.js View File

@@ -6079,7 +6079,7 @@ const cachesMap = new Map([
],
[
"style.css",
"d57c5c06d42df93399d43757fd533e3d"
"6b7c797491586a08664ee738b6e81766"
],
[
"temp.js",


+ 4
- 2
style.css View File

@@ -1077,8 +1077,10 @@ icon.inflicts::after
min-height: 47px; /* 为了防止只有一层6格大潜觉的时候,被缩减太多的问题*/
/*潜在觉醒布局,使用 gird*/
display: grid;
grid-template-columns: repeat(3, 32px);
grid-auto-rows: 32px;
grid-template: repeat(2, 32px) / repeat(3, 32px);
/*grid-template-columns: repeat(3, 32px);
grid-template-rows: repeat(2, 32px);*/
grid-auto-flow: column;
grid-gap: 3px 6px;
place-content: start center;
}


Loading…
Cancel
Save