aboutsummaryrefslogtreecommitdiff
path: root/components/Navbar.qml
diff options
context:
space:
mode:
authorMonzero Build System <builds@monzero.org>2026-08-15 21:26:40 +0100
committerMonzero Build System <builds@monzero.org>2026-08-15 21:26:40 +0100
commitdceeb88444ce966caa1a133d2926d5f7213c87ff (patch)
treed74c9c7d7e43c2a0d39d656c690c63050cff7f53 /components/Navbar.qml
parent81f33c7e00bf183823909a02e6d96ce11e41adce (diff)
downloadmonzero-gui-dceeb88444ce966caa1a133d2926d5f7213c87ff.tar.gz
monzero-gui-dceeb88444ce966caa1a133d2926d5f7213c87ff.tar.xz
monzero-gui-dceeb88444ce966caa1a133d2926d5f7213c87ff.zip
Establish Monzero GUI Phase 0 baselinemonzero-gui-phase0-20260815
Diffstat (limited to 'components/Navbar.qml')
-rw-r--r--components/Navbar.qml16
1 files changed, 8 insertions, 8 deletions
diff --git a/components/Navbar.qml b/components/Navbar.qml
index 3383d560..a1706e06 100644
--- a/components/Navbar.qml
+++ b/components/Navbar.qml
@@ -1,4 +1,4 @@
-// Copyright (c) 2014-2024, The Monero Project
+// Copyright (c) 2014-2024, The Monzero Project
//
// All rights reserved.
//
@@ -28,10 +28,10 @@
import QtQuick 2.9
import QtQuick.Layouts 1.1
-import "." as MoneroComponents
+import "." as MonzeroComponents
Rectangle {
- default property list<MoneroComponents.NavbarItem> items
+ default property list<MonzeroComponents.NavbarItem> items
property alias currentIndex: repeater.currentIndex
property alias previousIndex: repeater.previousIndex
@@ -44,12 +44,12 @@ Rectangle {
anchors.verticalCenter: parent.verticalCenter
anchors.horizontalCenter: parent.horizontalCenter
columnSpacing: 0
- property string fontColorActive: MoneroComponents.Style.blackTheme ? "white" : "white"
- property string fontColorInActive: MoneroComponents.Style.blackTheme ? "white" : MoneroComponents.Style.dimmedFontColor
+ property string fontColorActive: MonzeroComponents.Style.blackTheme ? "white" : "white"
+ property string fontColorInActive: MonzeroComponents.Style.blackTheme ? "white" : MonzeroComponents.Style.dimmedFontColor
property int fontSize: 15
property bool fontBold: true
- property var fontFamily: MoneroComponents.Style.fontRegular.name
- property string borderColor: MoneroComponents.Style.blackTheme ? "#808080" : "#B9B9B9"
+ property var fontFamily: MonzeroComponents.Style.fontRegular.name
+ property string borderColor: MonzeroComponents.Style.blackTheme ? "#808080" : "#B9B9B9"
property int textMargin: {
// left-right margins for a given cell
if(appWindow.width < 890){
@@ -137,7 +137,7 @@ Rectangle {
implicitHeight: children[0].implicitHeight
implicitWidth: children[0].implicitWidth
- MoneroComponents.TextPlain {
+ MonzeroComponents.TextPlain {
anchors.centerIn: parent
font.family: grid.fontFamily
font.pixelSize: grid.fontSize