fix(ui): adjust app and help area margins

Ayman Bagabas created

Change summary

internal/ui/model/ui.go | 3 +++
1 file changed, 3 insertions(+)

Detailed changes

internal/ui/model/ui.go 🔗

@@ -1286,6 +1286,9 @@ func (m *UI) generateLayout(w, h int) layout {
 
 	// Add app margins
 	appRect, helpRect := uv.SplitVertical(area, uv.Fixed(area.Dy()-helpHeight))
+	appRect.Min.Y += 1
+	appRect.Max.Y -= 1
+	helpRect.Min.Y -= 1
 	appRect.Min.X += 1
 	appRect.Max.X -= 1