Skip to content

Commit 7ae96cd

Browse files
authored
Enlarge traffic light icons on TRSS (#989)
resovles: automation/issues/234 Signed-off-by: Lan Xia <[email protected]>
1 parent 66a24cd commit 7ae96cd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test-result-summary-client/src/TrafficLight/TrafficLight.jsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,20 @@ function TrafficLight() {
2121

2222
const iconRed = (
2323
<CloseCircleOutlined
24-
style={{ color: 'rgb(255, 85, 0)', fontSize: 20 }}
24+
style={{ color: 'rgb(255, 85, 0)', fontSize: 23 }}
2525
/>
2626
);
2727
const iconGreen = (
2828
<CheckCircleOutlined
29-
style={{ color: 'rgb(44, 190, 78)', fontSize: 20 }}
29+
style={{ color: 'rgb(44, 190, 78)', fontSize: 23 }}
3030
/>
3131
);
3232
const iconYellow = (
33-
<WarningOutlined style={{ color: 'rgb(218, 165, 32)', fontSize: 20 }} />
33+
<WarningOutlined style={{ color: 'rgb(218, 165, 32)', fontSize: 23 }} />
3434
);
3535
const iconGrey = (
3636
<MinusCircleOutlined
37-
style={{ color: 'rgb(158, 158, 158)', fontSize: 20 }}
37+
style={{ color: 'rgb(158, 158, 158)', fontSize: 23 }}
3838
/>
3939
);
4040

0 commit comments

Comments
 (0)