mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 01:18:21 +00:00
remove hardcoded white color from selected tab (#719)
This commit is contained in:
parent
65445eba5e
commit
d692d321d3
1 changed files with 1 additions and 3 deletions
|
|
@ -92,9 +92,7 @@ impl Theme {
|
|||
|
||||
pub fn tab(&self, selected: bool) -> Style {
|
||||
if selected {
|
||||
self.text(true, false)
|
||||
.fg(Color::White)
|
||||
.add_modifier(Modifier::UNDERLINED)
|
||||
self.text(true, false).add_modifier(Modifier::UNDERLINED)
|
||||
} else {
|
||||
self.text(false, false)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue