fix(@desktop/chat): fix seach input paddings
It's unclear to me why these were off since the latest StatusQ upgrade. Closes #3396
This commit is contained in:
parent
92ec298c3d
commit
31d63c8f7d
|
@ -55,7 +55,6 @@ StatusModal {
|
||||||
input.icon.name: "search"
|
input.icon.name: "search"
|
||||||
input.height: 36
|
input.height: 36
|
||||||
input.topPadding: 9
|
input.topPadding: 9
|
||||||
input.bottomPadding: 0
|
|
||||||
}
|
}
|
||||||
|
|
||||||
StatusModalDivider { topPadding: 8 }
|
StatusModalDivider { topPadding: 8 }
|
||||||
|
|
|
@ -64,10 +64,9 @@ Item {
|
||||||
|
|
||||||
StatusBaseInput {
|
StatusBaseInput {
|
||||||
id: searchInput
|
id: searchInput
|
||||||
height: 36
|
implicitHeight: 36
|
||||||
width: parent.width
|
width: parent.width
|
||||||
topPadding: 8
|
topPadding: 9
|
||||||
bottomPadding: 0
|
|
||||||
//% "Search"
|
//% "Search"
|
||||||
placeholderText: qsTrId("search")
|
placeholderText: qsTrId("search")
|
||||||
icon.name: "search"
|
icon.name: "search"
|
||||||
|
|
Loading…
Reference in New Issue