The status bar right section width is hardcoded as `Constraint::Length(28)`. **Location:** [basalt/src/statusbar.rs#L37](https://github.com/erikjuhani/basalt/blob/5e628ef/basalt/src/statusbar.rs#L37) **Change:** Extract to a named constant: ```rust const STATUSBAR_RIGHT_WIDTH: u16 = 28; ```
The status bar right section width is hardcoded as
Constraint::Length(28).Location: basalt/src/statusbar.rs#L37
Change: Extract to a named constant: