chore: bring notification close icon in line with rest of the shell

This commit is contained in:
Nydragon 2024-11-20 11:27:20 +01:00
parent e50a21ebc5
commit a516c42fa5
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE

View file

@ -49,7 +49,7 @@ MouseArea {
RowLayout {
id: header
width: parent.width
height: 25
height: 40
IconImage {
source: toast.appIcon ? Quickshell.iconPath(toast.appIcon) : ""
@ -65,10 +65,14 @@ MouseArea {
font.pointSize: 12.5
}
Button {
BButton {
onClicked: toast.close()
height: 16
width: 16
height: 30
width: 30
IconImage {
anchors.fill: parent
source: Quickshell.iconPath("window-close")
}
}
}