Skip to content

Commit

Permalink
Update data volume icons
Browse files Browse the repository at this point in the history
  • Loading branch information
quanganhdo committed Apr 16, 2024
1 parent 9c62b8c commit ea788ee
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -365,12 +365,15 @@ public struct TunnelControllerView: View {

Group {
Image(NetworkProtectionAsset.dataReceived)
.frame(width: 12, height: 12)
Text(dataVolume.dataReceived)
.applyDataVolumeAttributes(colorScheme: colorScheme)
Image(NetworkProtectionAsset.dataSent)
.frame(width: 12, height: 12)
.padding(.leading, 4)
Text(dataVolume.dataSent)
.applyDataVolumeAttributes(colorScheme: colorScheme)
}
.applyDataVolumeAttributes(colorScheme: colorScheme)
.fixedSize()
}
.padding(EdgeInsets(top: 6, leading: 10, bottom: 6, trailing: 9))
Expand Down

0 comments on commit ea788ee

Please sign in to comment.