diff --git a/components/CharacterGrid/index.scss b/components/CharacterGrid/index.scss
index e83c3cfa..79725c38 100644
--- a/components/CharacterGrid/index.scss
+++ b/components/CharacterGrid/index.scss
@@ -1,4 +1,4 @@
-.CharacterGrid {
+#CharacterGrid {
display: flex;
justify-content: center;
}
diff --git a/components/CharacterGrid/index.tsx b/components/CharacterGrid/index.tsx
index af78ed7e..df55fe71 100644
--- a/components/CharacterGrid/index.tsx
+++ b/components/CharacterGrid/index.tsx
@@ -194,7 +194,7 @@ const CharacterGrid = (props: Props) => {
// Render: JSX components
return (
-
+
{Array.from(Array(numCharacters)).map((x, i) => {
return (
diff --git a/components/ExtraSummons/index.scss b/components/ExtraSummons/index.scss
index 9ff4fd60..ac570251 100644
--- a/components/ExtraSummons/index.scss
+++ b/components/ExtraSummons/index.scss
@@ -28,6 +28,23 @@
width: 387px;
}
+ #grid_summons {
+ display: grid;
+ grid-template-columns: auto auto;
+ grid-column-gap: $unit * 2;
+ grid-template-rows: 1fr;
+ grid-row-gap: $unit * 3;
+
+ & > li {
+ list-style: none;
+ min-height: 0;
+
+ .SummonUnit {
+ min-height: 0;
+ }
+ }
+ }
+
.SummonUnit .SummonImage {
background: #facea7;
}
diff --git a/components/SummonGrid/index.scss b/components/SummonGrid/index.scss
index 91ae1f18..e1c478aa 100644
--- a/components/SummonGrid/index.scss
+++ b/components/SummonGrid/index.scss
@@ -1,4 +1,4 @@
-.SummonGrid {
+#SummonGrid {
display: grid;
grid-template-columns: auto auto auto;
grid-column-gap: $unit * 2;
@@ -11,24 +11,16 @@
margin-bottom: $unit;
text-align: center;
}
-}
-#grid_summons {
- display: grid;
- grid-template-columns: auto auto;
- grid-column-gap: $unit * 2;
- grid-template-rows: 1fr;
- grid-row-gap: $unit * 3;
-}
+ #grid_summons {
+ display: grid;
+ grid-template-columns: auto auto;
+ grid-column-gap: $unit * 2;
+ grid-template-rows: 1fr;
+ grid-row-gap: $unit * 3;
-#grid_summons > li {
- list-style: none;
-}
-
-#ExtraSummons #grid_summons > li {
- min-height: 0;
-
- .SummonUnit {
- min-height: 0;
+ & > li {
+ list-style: none;
+ }
}
-}
\ No newline at end of file
+}
diff --git a/components/SummonGrid/index.tsx b/components/SummonGrid/index.tsx
index 476a6292..baf16dd9 100644
--- a/components/SummonGrid/index.tsx
+++ b/components/SummonGrid/index.tsx
@@ -265,7 +265,7 @@ const SummonGrid = (props: Props) => {
)
return (
-
+
{ mainSummonElement }
{ friendSummonElement }
{ summonGridElement }