1 Commits

Author SHA1 Message Date
1b60947177 WIP 2026-02-07 21:30:26 -05:00
3 changed files with 1 additions and 3 deletions

View File

@@ -11,7 +11,6 @@ MenuBar {
// Background for this MenuBar. // Background for this MenuBar.
background: Rectangle { background: Rectangle {
color: RustColors.menubar color: RustColors.menubar
radius: 20.0
} }
// //

View File

@@ -44,7 +44,6 @@ SplitView {
SplitView.minimumWidth: 0 SplitView.minimumWidth: 0
SplitView.preferredWidth: 200 SplitView.preferredWidth: 200
color: RustColors.explorer_background color: RustColors.explorer_background
radius: 20
ColumnLayout { ColumnLayout {
spacing: 2 spacing: 2

View File

@@ -16,7 +16,7 @@ Rectangle {
} else if (hovered) { } else if (hovered) {
return RustColors.hovered; return RustColors.hovered;
} else { } else {
return "black"; return RustColors.gutter;
} }
} }
required property bool hovered required property bool hovered