Fix hardcoded spacing/padding
Another padding fix
2 files changed, 6 insertions, 6 deletions
diff --git a/resources/qml/InviteDialog.qml b/resources/qml/InviteDialog.qml
index 1eaaef8f..e80087fc 100644
--- a/resources/qml/InviteDialog.qml
+++ b/resources/qml/InviteDialog.qml
@@ -47,7 +47,7 @@ ApplicationWindow {
ColumnLayout {
anchors.fill: parent
- anchors.margins: 10
+ anchors.margins: Nheko.paddingMedium
spacing: Nheko.paddingMedium
Label {
@@ -106,7 +106,7 @@ ApplicationWindow {
}
ColumnLayout {
- spacing: 5
+ spacing: Nheko.paddingSmall
Label {
text: model.displayName
diff --git a/resources/qml/RoomMembers.qml b/resources/qml/RoomMembers.qml
index b190be07..11bd486c 100644
--- a/resources/qml/RoomMembers.qml
+++ b/resources/qml/RoomMembers.qml
@@ -28,7 +28,7 @@ ApplicationWindow {
ColumnLayout {
anchors.fill: parent
- anchors.margins: 10
+ anchors.margins: Nheko.paddingMedium
spacing: Nheko.paddingMedium
Avatar {
@@ -59,7 +59,7 @@ ApplicationWindow {
ScrollView {
palette: Nheko.colors
- padding: 10
+ padding: Nheko.paddingMedium
ScrollBar.horizontal.visible: false
Layout.fillHeight: true
Layout.minimumHeight: 200
@@ -69,7 +69,7 @@ ApplicationWindow {
id: memberList
clip: true
- spacing: 8
+ spacing: Nheko.paddingMedium
boundsBehavior: Flickable.StopAtBounds
model: members
@@ -92,7 +92,7 @@ ApplicationWindow {
}
ColumnLayout {
- spacing: 5
+ spacing: Nheko.paddingSmall
Label {
text: model.displayName
|