Added the dashboard page

This commit is contained in:
Alexandre Bourlier
2018-04-22 08:47:18 +02:00
parent e0ff0d1792
commit ed189a8129
6 changed files with 62 additions and 36 deletions

6
src/scss/_dashboard.scss Normal file
View File

@ -0,0 +1,6 @@
#dashboard {
#search-help {
font-style: italic;
padding-left: 5px;
}
}

View File

@ -1,23 +1,31 @@
#navbar {
z-index: 9999;
#menu-title {
font-family: bebas;
color: $hd-color;
font-size: $menu-font-size;
}
#navbar-router {
color: $twitter-color;
width: 100%;
display: flex;
justify-content: space-between;
flex-direction: row;
color: $twitter-color;
#menu-title {
font-family: bebas;
color: $hd-color;
font-size: $menu-font-size;
text-align: center;
}
#menu-items {
display: flex;
justify-content: space-between;
}
ldp-route {
cursor: pointer;
font-size: 18px;
}
ldp-route:hover {
text-decoration: underline;
}
#menu-title[active],
ldp-route[active] {
border-bottom: 2px solid $hd-color;
color: $hd-color;

View File

@ -8,3 +8,4 @@
@import "groupsList";
@import "project";
@import "projectsList";
@import "dashboard";