|
@@ -130,10 +130,10 @@ const AppDashboard: React.FC<Props> = ({
|
|
|
return (
|
|
return (
|
|
|
<Row isAtBottom={i === apps.length - 1}>
|
|
<Row isAtBottom={i === apps.length - 1}>
|
|
|
<Text size={14}>
|
|
<Text size={14}>
|
|
|
- <Icon src={icons[i % icons.length]} />
|
|
|
|
|
|
|
+ <MidIcon src={icons[i % icons.length]} />
|
|
|
{app.name}
|
|
{app.name}
|
|
|
<Spacer inline x={1} />
|
|
<Spacer inline x={1} />
|
|
|
- <SmallIcon src={healthy} />
|
|
|
|
|
|
|
+ <MidIcon src={healthy} />
|
|
|
</Text>
|
|
</Text>
|
|
|
<Spacer height="15px" />
|
|
<Spacer height="15px" />
|
|
|
<Text size={13} color="#ffffff44">
|
|
<Text size={13} color="#ffffff44">
|
|
@@ -165,6 +165,7 @@ const Row = styled.div<{ isAtBottom?: boolean }>`
|
|
|
border: 1px solid #494b4f;
|
|
border: 1px solid #494b4f;
|
|
|
border-radius: 5px;
|
|
border-radius: 5px;
|
|
|
margin-bottom: 15px;
|
|
margin-bottom: 15px;
|
|
|
|
|
+ animation: fadeIn 0.3s 0s;
|
|
|
`;
|
|
`;
|
|
|
|
|
|
|
|
const List = styled.div`
|
|
const List = styled.div`
|
|
@@ -189,6 +190,11 @@ const Icon = styled.img`
|
|
|
margin-right: 15px;
|
|
margin-right: 15px;
|
|
|
`;
|
|
`;
|
|
|
|
|
|
|
|
|
|
+const MidIcon = styled.img`
|
|
|
|
|
+ height: 16px;
|
|
|
|
|
+ margin-right: 13px;
|
|
|
|
|
+`;
|
|
|
|
|
+
|
|
|
const SmallIcon = styled.img<{ opacity?: string }>`
|
|
const SmallIcon = styled.img<{ opacity?: string }>`
|
|
|
margin-left: 2px;
|
|
margin-left: 2px;
|
|
|
height: 14px;
|
|
height: 14px;
|