centered form

This commit is contained in:
filipriec
2025-03-21 18:46:17 +01:00
parent 27cca8763b
commit 62d7fb6bda
3 changed files with 26 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
// src/components/handlers/background.rs
use ratatui::{
widgets::{Block},
layout::Rect,
style::Style,
Frame,
};
use crate::config::colors::Theme;
pub fn render_background(f: &mut Frame, area: Rect, theme: &Theme) {
let background = Block::default()
.style(Style::default().bg(theme.bg));
f.render_widget(background, area);
}