Skip to content

Commit fd2f5c3

Browse files
committed
chore: remove rounded corners
1 parent 71c5b0c commit fd2f5c3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

internal/tui/ui/components/help_overlay.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ func (h *HelpOverlay) View() tea.View {
7676

7777
// Card style
7878
cardStyle := lipgloss.NewStyle().
79-
Border(lipgloss.RoundedBorder()).
79+
Border(lipgloss.NormalBorder()).
8080
BorderForeground(styles.ColorPrimary()).
8181
Padding(1, 2)
8282

internal/tui/ui/layout/layout.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ func (l *Layout) renderContent() string {
428428
style := lipgloss.NewStyle().
429429
Width(mainWidth).
430430
Height(mainHeight).
431-
Border(lipgloss.RoundedBorder()).
431+
Border(lipgloss.NormalBorder()).
432432
BorderForeground(borderColor)
433433

434434
if l.content == nil {

internal/tui/ui/layout/sidebar.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ func (s *Sidebar) renderPanel(title, content string, width, contentHeight int, f
339339
return lipgloss.NewStyle().
340340
Width(width - BorderSize).
341341
Height(contentHeight).
342-
Border(lipgloss.RoundedBorder()).
342+
Border(lipgloss.NormalBorder()).
343343
BorderForeground(borderColor).
344344
Render(titleBar + "\n" + listStyle.Render(content))
345345
}

0 commit comments

Comments
 (0)