(width int, content string)
| 83 | } |
| 84 | |
| 85 | func (s styles) CenteredLine(width int, content string) string { |
| 86 | return lipgloss.NewStyle().Width(width).Align(lipgloss.Center).Render(content) |
| 87 | } |
| 88 | |
| 89 | // OverlayCenter composites fg centered on top of bg within the given dimensions. |
| 90 | func OverlayCenter(bg, fg string, width, height int) string { |
no outgoing calls