mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
Add hit multiplier indicator to comp analyzer
This commit is contained in:
parent
e1ae49f1e6
commit
593e3d1fa5
|
|
@ -100,6 +100,13 @@
|
|||
font-weight: var(--bold);
|
||||
}
|
||||
|
||||
.hitMultiplier {
|
||||
font-size: var(--fonts-xxs);
|
||||
font-weight: var(--semi-bold);
|
||||
opacity: 0.8;
|
||||
margin-left: var(--s-0-5);
|
||||
}
|
||||
|
||||
.segment[data-slot-color="yellow"] {
|
||||
background-color: #f5d742;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -133,7 +133,12 @@ function SegmentBar({
|
|||
subWeaponId={params.subWeaponId}
|
||||
specialWeaponId={params.specialWeaponId}
|
||||
/>
|
||||
<span className={styles.damageValue}>{segment.damageValue}</span>
|
||||
<span className={styles.damageValue}>
|
||||
{segment.damageValue}
|
||||
{segment.count > 1 ? (
|
||||
<span className={styles.hitMultiplier}>×{segment.count}</span>
|
||||
) : null}
|
||||
</span>
|
||||
</div>
|
||||
<button
|
||||
type="button"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user