diff --git a/web/src/app/app-routing.module.ts b/web/src/app/app-routing.module.ts
index 4821c9df..7b4eee36 100644
--- a/web/src/app/app-routing.module.ts
+++ b/web/src/app/app-routing.module.ts
@@ -9,7 +9,7 @@ import { Routes, RouterModule } from '@angular/router';
const routes: Routes = [
{
path: '',
- component: DashboardComponent
+ component: HomeComponent
},
{
path:'about',
diff --git a/web/src/app/app.component.html b/web/src/app/app.component.html
index 2a1ab58a..0dffb767 100644
--- a/web/src/app/app.component.html
+++ b/web/src/app/app.component.html
@@ -1,9 +1,21 @@
-
\ No newline at end of file
+
+
+
+
\ No newline at end of file
diff --git a/web/src/app/app.component.scss b/web/src/app/app.component.scss
index 7ebee8e5..f1d75fc1 100644
--- a/web/src/app/app.component.scss
+++ b/web/src/app/app.component.scss
@@ -1,14 +1,32 @@
.container {
+ border: 1px solid rgba(0, 0, 0, 0.5);
+ height:100vh;
}
+
.main {
- padding: 20px 70px 0;
display: flex;
align-items: center;
justify-content: center;
+ min-width:80%;
}
-.sidebar {
- padding:20px;
+.sidebar{
width:20%;
+}
+
+.dashboard-highlight {
+ color: green !important;
+}
+
+.trading-highlight {
+ color: red !important;
+}
+
+.wallet-highlight {
+ color: blueviolet !important;
+}
+
+.settings-highlight {
+ color: magenta !important;
}
\ No newline at end of file
diff --git a/web/src/app/pages/home/home.component.html b/web/src/app/pages/home/home.component.html
index e610791e..af3741e1 100644
--- a/web/src/app/pages/home/home.component.html
+++ b/web/src/app/pages/home/home.component.html
@@ -1,2 +1 @@
-
-
\ No newline at end of file
+Howdy!
\ No newline at end of file
diff --git a/web/src/app/shared/sidebar/sidebar.component.scss b/web/src/app/shared/sidebar/sidebar.component.scss
index 412a08de..c2a89ec0 100644
--- a/web/src/app/shared/sidebar/sidebar.component.scss
+++ b/web/src/app/shared/sidebar/sidebar.component.scss
@@ -1,6 +1,6 @@
.sidebar {
- width:18%;
- background: none;
+ padding: 20px;
+ width:20%;
}
.dashboard-highlight {
diff --git a/web/src/styles.scss b/web/src/styles.scss
index dbbb41e7..c76cb60b 100644
--- a/web/src/styles.scss
+++ b/web/src/styles.scss
@@ -4,7 +4,8 @@ html,
body {
margin: 0;
padding: 0;
- height: 100%;
+ overflow-y: hidden;
+
}