@@ -9,7 +9,7 @@ use iced::window::{Icon, Level, Position, Settings};
99use iced:: { Element , Length , Size , Subscription , Task , Theme } ;
1010use tokio:: runtime:: Handle ;
1111
12- use common:: interface:: color:: { DARK_GREY , GREEN , OFF_WHITE , ORANGE , RED , WHITE , PURPLE , YELLOW } ;
12+ use common:: interface:: color:: { DARK_GREY , GREEN , OFF_WHITE , ORANGE , PURPLE , RED , WHITE , YELLOW } ;
1313use common:: interface:: container:: content:: { CONTENT_PADDING , CONTENT_SPACING , content_container} ;
1414use common:: interface:: container:: header:: { HEADER_HEIGHT , HEADER_PADDING , header_container} ;
1515use common:: interface:: container:: sidebar:: {
@@ -102,32 +102,32 @@ impl Bonsai {
102102 . height( SIDEBAR_BUTTON_HEIGHT )
103103 . width( Length :: Fill )
104104 . style( sidebar_button( self . active_tab == Tab :: Ark , PURPLE ) ) ,
105- button( text( "[ NODE] OVERVIEW" ) )
105+ button( text( "NODE OVERVIEW" ) )
106106 . on_press( BonsaiMessage :: SelectTab ( Tab :: NodeOverview ) )
107107 . height( SIDEBAR_BUTTON_HEIGHT )
108108 . width( Length :: Fill )
109109 . style( sidebar_button( self . active_tab == Tab :: NodeOverview , GREEN ) ) ,
110- button( text( "[ NODE] P2P" ) )
110+ button( text( "NODE P2P" ) )
111111 . on_press( BonsaiMessage :: SelectTab ( Tab :: NodeP2P ) )
112112 . height( SIDEBAR_BUTTON_HEIGHT )
113113 . width( Length :: Fill )
114114 . style( sidebar_button( self . active_tab == Tab :: NodeP2P , GREEN ) ) ,
115- button( text( "[ NODE] BLOCKS" ) )
115+ button( text( "NODE BLOCKS" ) )
116116 . on_press( BonsaiMessage :: SelectTab ( Tab :: NodeBlocks ) )
117117 . height( SIDEBAR_BUTTON_HEIGHT )
118118 . width( Length :: Fill )
119119 . style( sidebar_button( self . active_tab == Tab :: NodeBlocks , GREEN ) ) ,
120- button( text( "[ NODE] UTREEXO" ) )
120+ button( text( "NODE UTREEXO" ) )
121121 . on_press( BonsaiMessage :: SelectTab ( Tab :: NodeUtreexo ) )
122122 . height( SIDEBAR_BUTTON_HEIGHT )
123123 . width( Length :: Fill )
124124 . style( sidebar_button( self . active_tab == Tab :: NodeUtreexo , GREEN ) ) ,
125- button( text( "[ NODE] SETTINGS" ) )
125+ button( text( "NODE SETTINGS" ) )
126126 . on_press( BonsaiMessage :: SelectTab ( Tab :: NodeSettings ) )
127127 . height( SIDEBAR_BUTTON_HEIGHT )
128128 . width( Length :: Fill )
129129 . style( sidebar_button( self . active_tab == Tab :: NodeSettings , GREEN ) ) ,
130- button( text( "ABOUT" ) )
130+ button( text( "ABOUT BONSAI " ) )
131131 . on_press( BonsaiMessage :: SelectTab ( Tab :: About ) )
132132 . height( SIDEBAR_BUTTON_HEIGHT )
133133 . width( Length :: Fill )
0 commit comments