diff options
Diffstat (limited to 'components/Navbar.qml')
| -rw-r--r-- | components/Navbar.qml | 16 |
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 |
