Browse Source

More style improvements.

pull/436/head
Sebastian Stehle 6 years ago
parent
commit
88289383ec
  1. 1
      frontend/app/features/apps/pages/apps-page.component.scss
  2. 2
      frontend/app/features/dashboard/pages/dashboard-page.component.html
  3. 15
      frontend/app/features/dashboard/pages/dashboard-page.component.scss
  4. 8
      frontend/app/theme/_bootstrap.scss

1
frontend/app/features/apps/pages/apps-page.component.scss

@ -3,7 +3,6 @@
.apps { .apps {
&-title { &-title {
font-weight: light;
font-size: 1.4rem; font-size: 1.4rem;
} }

2
frontend/app/features/dashboard/pages/dashboard-page.component.html

@ -7,7 +7,7 @@
<h1 class="dashboard-title">Hi {{authState.user?.displayName}}</h1> <h1 class="dashboard-title">Hi {{authState.user?.displayName}}</h1>
<div class="subtext"> <div class="subtext">
Welcome to <span class="app-name">{{app.displayName}}</span> dashboard. Welcome to <strong>{{app.displayName}}</strong> dashboard.
</div> </div>
</div> </div>

15
frontend/app/features/dashboard/pages/dashboard-page.component.scss

@ -8,7 +8,6 @@
} }
&-title { &-title {
font-weight: light;
font-size: 1.4rem; font-size: 1.4rem;
} }
@ -19,6 +18,10 @@
} }
} }
.subtext {
margin-bottom: 2rem;
}
:host ::ng-deep { :host ::ng-deep {
canvas { canvas {
height: 12rem !important; height: 12rem !important;
@ -27,12 +30,6 @@
} }
} }
.subtext {
margin-top: .5rem;
margin-bottom: .8rem;
color: $color-text-decent;
}
.card { .card {
& { & {
margin-right: 1rem; margin-right: 1rem;
@ -104,7 +101,3 @@
margin-bottom: .5rem; margin-bottom: .5rem;
} }
} }
.app-name {
color: $color-title;
}

8
frontend/app/theme/_bootstrap.scss

@ -547,6 +547,14 @@ a {
} }
} }
//
// Cards
//
.card {
border-bottom-width: 2px;
border-top-width: 0;
}
// //
// Table Helpers // Table Helpers
// //

Loading…
Cancel
Save