target arrows
This commit is contained in:
parent
732ddcb025
commit
648311cdcf
@ -519,6 +519,8 @@ table td svg {
|
|||||||
padding: 0 2em 0 2em;
|
padding: 0 2em 0 2em;
|
||||||
|
|
||||||
min-width: 300px;
|
min-width: 300px;
|
||||||
|
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* CRYP BOX */
|
/* CRYP BOX */
|
||||||
@ -682,6 +684,7 @@ table td svg {
|
|||||||
flex-flow: row wrap;
|
flex-flow: row wrap;
|
||||||
flex: 1 0 25%;
|
flex: 1 0 25%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
z-index: 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
.game-cryp .effects {
|
.game-cryp .effects {
|
||||||
@ -803,7 +806,7 @@ table td svg {
|
|||||||
|
|
||||||
.game .target-svg path {
|
.game .target-svg path {
|
||||||
stroke: whitesmoke;
|
stroke: whitesmoke;
|
||||||
stroke-width: 2px;
|
stroke-width: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mobile-skills {
|
.mobile-skills {
|
||||||
|
|||||||
@ -36,6 +36,9 @@ function TargetSvg(args) {
|
|||||||
L150,${sourceY}
|
L150,${sourceY}
|
||||||
C150,${sourceY} 150,${targetY} 150,${targetY}
|
C150,${sourceY} 150,${targetY} 150,${targetY}
|
||||||
L0,${targetY}
|
L0,${targetY}
|
||||||
|
L50,${targetY - 4}
|
||||||
|
M0,${targetY}
|
||||||
|
L50,${targetY + 4}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
return <path d={path} />;
|
return <path d={path} />;
|
||||||
@ -46,6 +49,9 @@ function TargetSvg(args) {
|
|||||||
L${curveStart},${sourceY}
|
L${curveStart},${sourceY}
|
||||||
C${curveEnd},${sourceY} ${curveStart},${targetY} ${curveEnd},${targetY}
|
C${curveEnd},${sourceY} ${curveStart},${targetY} ${curveEnd},${targetY}
|
||||||
L900,${targetY}
|
L900,${targetY}
|
||||||
|
L850,${targetY - 4}
|
||||||
|
M900,${targetY}
|
||||||
|
L850,${targetY + 4}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
return <path d={path} />;
|
return <path d={path} />;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user