QML KCMs have an extra top margin which places the title lower than the title on QWidget KCMs.
This is set in Kirigami.AbstractApplicationItem#295:
Kirigami.AbstractApplicationItem#295
topMargin: header && controlsVisible ? header.height : 0
We can avoid this by setting the property controlsVisible to false
controlsVisible
false
BEFORE:
AFTER: