+
{skill.name[locale]}
-
- {group?.name[locale]}
-
+
{group?.name[locale]}
)
diff --git a/components/summon/SummonResult/index.module.scss b/components/summon/SummonResult/index.module.scss
index 69de7ce4..cf165364 100644
--- a/components/summon/SummonResult/index.module.scss
+++ b/components/summon/SummonResult/index.module.scss
@@ -1,4 +1,4 @@
-.SummonResult {
+.result {
border-radius: 6px;
display: flex;
gap: $unit;
@@ -8,7 +8,7 @@
background: var(--button-contained-bg);
cursor: pointer;
- .Info h5 {
+ .info h5 {
color: var(--text-primary);
}
}
@@ -21,7 +21,7 @@
width: 120px;
}
- .Info {
+ .info {
display: flex;
flex-direction: column;
flex-grow: 1;
diff --git a/components/summon/SummonResult/index.tsx b/components/summon/SummonResult/index.tsx
index bba985d1..1361c28a 100644
--- a/components/summon/SummonResult/index.tsx
+++ b/components/summon/SummonResult/index.tsx
@@ -21,12 +21,12 @@ const SummonResult = (props: Props) => {
const summon = props.data
return (
-
+
-
+
{summon.name[locale]}
{
ulb={summon.uncap.ulb}
special={false}
/>
-
diff --git a/components/weapon/WeaponResult/index.module.scss b/components/weapon/WeaponResult/index.module.scss
index c67efcc9..7a6f53c9 100644
--- a/components/weapon/WeaponResult/index.module.scss
+++ b/components/weapon/WeaponResult/index.module.scss
@@ -1,4 +1,4 @@
-.WeaponResult {
+.result {
border-radius: 6px;
display: flex;
gap: $unit;
@@ -8,7 +8,7 @@
background: var(--button-contained-bg);
cursor: pointer;
- .Info h5 {
+ .info h5 {
color: var(--text-primary);
}
}
@@ -21,7 +21,7 @@
width: 120px;
}
- .Info {
+ .info {
display: flex;
flex-direction: column;
flex-grow: 1;
@@ -32,6 +32,7 @@
display: inline-block;
font-size: $font-medium;
font-weight: $medium;
+ opacity: 1;
}
.UncapIndicator {
diff --git a/components/weapon/WeaponResult/index.tsx b/components/weapon/WeaponResult/index.tsx
index 23a30363..9506a952 100644
--- a/components/weapon/WeaponResult/index.tsx
+++ b/components/weapon/WeaponResult/index.tsx
@@ -33,12 +33,12 @@ const WeaponResult = (props: Props) => {
const weapon = props.data
return (
-
+
-
+
{weapon.name[locale]}
{
ulb={weapon.uncap.ulb}
special={false}
/>
-