Skip to content

Commit e621826

Browse files
committed
qml: fix NetworkIndicator font size and padding
1 parent 15df21c commit e621826

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/qml/components/NetworkIndicator.qml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,14 @@ import org.bitcoincore.qt 1.0
1212
Button {
1313
id: root
1414
property color bgColor
15-
property int textSize: 18
15+
property int textSize: 15
1616
font.family: "Inter"
1717
font.styleName: "Regular"
1818
font.pixelSize: root.textSize
19-
padding: 7
19+
topPadding: 2
20+
bottomPadding: 2
21+
leftPadding: 7
22+
rightPadding: 7
2023
state: chainModel.currentNetworkName
2124
contentItem: Text {
2225
text: root.text

0 commit comments

Comments
 (0)