diff --git a/src/App/App.xaml.cs b/src/App/App.xaml.cs index dbd13fa78..384c57bbe 100644 --- a/src/App/App.xaml.cs +++ b/src/App/App.xaml.cs @@ -28,7 +28,7 @@ namespace Bit.App InitializeComponent(); SetCulture(); ThemeManager.SetTheme("light"); - MainPage = new TabsPage(); + MainPage = new HomePage(); ServiceContainer.Resolve("platformUtilsService").Init(); _broadcasterService.Subscribe("showDialog", async (details) => diff --git a/src/App/Pages/HomePage.xaml b/src/App/Pages/HomePage.xaml index c05c30eaf..87f18f48e 100644 --- a/src/App/Pages/HomePage.xaml +++ b/src/App/Pages/HomePage.xaml @@ -4,6 +4,8 @@ xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="Bit.App.Pages.HomePage" xmlns:pages="clr-namespace:Bit.App.Pages" + xmlns:i18n="clr-namespace:Bit.App.Utilities" + xmlns:android="clr-namespace:Xamarin.Forms.PlatformConfiguration.AndroidSpecific;assembly=Xamarin.Forms.Core" x:DataType="pages:HomeViewModel" Title="{Binding PageTitle}"> @@ -11,22 +13,19 @@ - - diff --git a/src/App/Sass/styles.scss b/src/App/Sass/styles.scss index 676f3d1c0..6f56c5c8f 100644 --- a/src/App/Sass/styles.scss +++ b/src/App/Sass/styles.scss @@ -1,7 +1,7 @@ @import "variables.scss"; __ContentPage { - background-color: $white; + // background-color: $white; } StackLayout.list-cell {