Add placeholders for side panel and console.

This commit is contained in:
2025-03-29 09:55:09 -04:00
parent 59acdc48fa
commit 8b71af06a8
6 changed files with 165 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
import QtQuick
import QtQuick.Controls
MenuItem {
id: root
background: Rectangle {
color: root.hovered ? "#4b4f51" : "#3c3f41" // Hover effect
radius: 2.5
}
contentItem: IconLabel {
color: "black"
font.family: "Helvetica"
text: root.text
}
}