summaryrefslogtreecommitdiffstats
path: root/components/mail/contents/ui
diff options
context:
space:
mode:
Diffstat (limited to 'components/mail/contents/ui')
-rw-r--r--components/mail/contents/ui/Mail.qml7
1 files changed, 4 insertions, 3 deletions
diff --git a/components/mail/contents/ui/Mail.qml b/components/mail/contents/ui/Mail.qml
index af006c1b..6a450d7f 100644
--- a/components/mail/contents/ui/Mail.qml
+++ b/components/mail/contents/ui/Mail.qml
@@ -209,17 +209,18 @@ Controls2.ApplicationWindow {
209 } 209 }
210 } 210 }
211 211
212 KubeComponents.Button { 212 KubeComponents.PositiveButton {
213 id: newMailButton 213 id: newMailButton
214
214 anchors { 215 anchors {
215 top: toolBar.bottom 216 top: toolBar.bottom
216 left: parent.left 217 left: parent.left
217 right: parent.right 218 right: parent.right
218 margins: KubeTheme.Units.largeSpacing 219 margins: KubeTheme.Units.largeSpacing
219 } 220 }
220 color: KubeTheme.Colors.positveColor 221
221 height: KubeTheme.Units.gridUnit * 1.5
222 text: qsTr("New Email") 222 text: qsTr("New Email")
223
223 onClicked: { 224 onClicked: {
224 composer.open() 225 composer.open()
225 } 226 }