Skip to content

Commit a270b68

Browse files
committed
corrected the design on the welcome page
1 parent cb0e79b commit a270b68

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

src/Server/Coderr.Server.Web/ClientApp/components/home/home.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ export default class HomeHomeComponent extends Vue {
1414
created() {
1515
AppRoot.Instance.loadState("MainHome", this)
1616
.then(gotState => {
17-
if (gotState) {
17+
if (gotState && false) {
18+
1819
if (this.muteOnboarding) {
1920
this.$router.push({ name: "discover" });
2021
}

src/Server/Coderr.Server.Web/ClientApp/components/home/home.vue.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<template>
22
<div class="onboarding">
3-
<div v-show="showOnboarding" class="bg-dark pb-5">
3+
<div v-show="showOnboarding" class="pb-5">
44
<div class="row">
5-
<div class="col mb-2 mt-5">
6-
<div class="m-4 p-5">
5+
<div class="col">
6+
<div class="p-4">
77
<h2>Welcome to Coderr!</h2>
88
<p class="lead">
9-
Coderr finds errors in production and makes it trivial to reproduce and correct them. The best way to get started is to read our <a class="text-blue" href="https://coderr.io/documentation/getting-started/">getting started guide</a>.
9+
Coderr finds errors in production and makes it trivial to reproduce and correct them.
10+
The best way to get started is to read our <a class="text-red" href="https://coderr.io/documentation/getting-started/">getting started guide</a>.
1011
</p>
1112
</div>
1213

src/Server/Coderr.Server.Web/wwwroot/scss/coderr-variables.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ $gray-700: #393938;
88
$gray-800: #2e2d2c;
99
$gray-900: #141414;
1010

11-
$blue: #59c1d5;
11+
$blue: #59c1d5git;
1212
$blue-60: #abdbe7;
1313
$blue-30: #d8eef4;
1414

0 commit comments

Comments
 (0)