Skip to content

Commit 154586a

Browse files
committed
Fix status icon size
1 parent fb76a03 commit 154586a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

frontend/src/components/Nav/Menu/styled.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,18 @@ export const Title = styled.div`
5151
`;
5252

5353
export const StatusIconWrapper = styled.svg.attrs({
54-
viewBox: '0 0 4 4',
54+
viewBox: '0 0 6 6',
5555
xmlns: 'http://www.w3.org/2000/svg',
5656
})`
5757
fill: none;
58-
width: 4px;
59-
height: 4px;
58+
width: 6px;
59+
height: 6px;
6060
`;
6161

6262
export const StatusIcon = styled.circle.attrs({
63-
cx: 2,
64-
cy: 2,
65-
r: 2,
63+
cx: 3,
64+
cy: 3,
65+
r: 3,
6666
role: 'status-circle',
6767
})<{ status: ServerStatus }>(({ theme, status }) => {
6868
const statusColor: {

0 commit comments

Comments
 (0)