Update
This commit is contained in:
parent
e93eecea91
commit
7ca2503508
|
|
@ -180,3 +180,7 @@
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
width: 300px;
|
width: 300px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blink {
|
||||||
|
animation: fade 1.2s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -1332,7 +1332,7 @@ const ModalTerminal = ({
|
||||||
<Flex justify={"space-between"} align={"center"} mb={"sm"}>
|
<Flex justify={"space-between"} align={"center"} mb={"sm"}>
|
||||||
<Text fw={600} fz={"14px"}>
|
<Text fw={600} fz={"14px"}>
|
||||||
List ports{" "}
|
List ports{" "}
|
||||||
<Text component="span" c="var(--green-7)" fw={600}>
|
<Text component="span" c="#2f9e44" fw={600}>
|
||||||
{isPhysicalTest
|
{isPhysicalTest
|
||||||
? `(${line?.listPortsPhysical?.length || 0}/${
|
? `(${line?.listPortsPhysical?.length || 0}/${
|
||||||
line?.ports?.length || 0
|
line?.ports?.length || 0
|
||||||
|
|
@ -1345,7 +1345,7 @@ const ModalTerminal = ({
|
||||||
size="sm"
|
size="sm"
|
||||||
color="blue"
|
color="blue"
|
||||||
leftSection={
|
leftSection={
|
||||||
<Box component="span" className="blink" />
|
<Box component="span" className={classes.blink} />
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
Running
|
Running
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue