mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 20:48:52 +03:00
Use standardized padding
This commit is contained in:
parent
f1f5796fb8
commit
74d493ff16
2 changed files with 5 additions and 5 deletions
|
@ -49,7 +49,7 @@ ApplicationWindow {
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.margins: 10
|
anchors.margins: 10
|
||||||
spacing: 10
|
spacing: Nheko.paddingMedium
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
text: qsTr("User ID to invite")
|
text: qsTr("User ID to invite")
|
||||||
|
@ -57,7 +57,7 @@ ApplicationWindow {
|
||||||
}
|
}
|
||||||
|
|
||||||
RowLayout {
|
RowLayout {
|
||||||
spacing: 10
|
spacing: Nheko.paddingMedium
|
||||||
|
|
||||||
MatrixTextField {
|
MatrixTextField {
|
||||||
id: inviteeEntry
|
id: inviteeEntry
|
||||||
|
@ -165,7 +165,7 @@ ApplicationWindow {
|
||||||
model: invitees
|
model: invitees
|
||||||
|
|
||||||
delegate: RowLayout {
|
delegate: RowLayout {
|
||||||
spacing: 10
|
spacing: Nheko.paddingMedium
|
||||||
|
|
||||||
Avatar {
|
Avatar {
|
||||||
width: Nheko.avatarSize
|
width: Nheko.avatarSize
|
||||||
|
|
|
@ -29,7 +29,7 @@ ApplicationWindow {
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.margins: 10
|
anchors.margins: 10
|
||||||
spacing: 10
|
spacing: Nheko.paddingMedium
|
||||||
|
|
||||||
Avatar {
|
Avatar {
|
||||||
id: roomAvatar
|
id: roomAvatar
|
||||||
|
@ -81,7 +81,7 @@ ApplicationWindow {
|
||||||
}
|
}
|
||||||
|
|
||||||
delegate: RowLayout {
|
delegate: RowLayout {
|
||||||
spacing: 10
|
spacing: Nheko.paddingMedium
|
||||||
|
|
||||||
Avatar {
|
Avatar {
|
||||||
width: Nheko.avatarSize
|
width: Nheko.avatarSize
|
||||||
|
|
Loading…
Reference in a new issue