Skip to content

Commit

Permalink
Switch the app title to The Compendium. Part of #25.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkomoros committed Dec 27, 2018
1 parent 017692f commit dc9df64
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/compendium-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,10 @@ class CompendiumApp extends connect(store)(LitElement) {
font-family: var(--app-header-font-family);
font-weight:bold;
font-size: 26px;
color: var(--app-dark-text-color-light);
}
[main-title] span {
color: var(--app-primary-color);
}
Expand Down Expand Up @@ -174,7 +178,7 @@ class CompendiumApp extends connect(store)(LitElement) {
<!-- Header -->
<div class='header'>
<div class='inner'>
<div main-title>${this.appTitle}</div>
<div main-title>The <span>Compendium</span></div>
<div class='spacer'></div>
<nav class="toolbar-list">
${this._sections && Object.keys(this._sections).length > 0 ?
Expand Down Expand Up @@ -219,7 +223,7 @@ class CompendiumApp extends connect(store)(LitElement) {
}

get appTitle() {
return "Complexity Compendium";
return "The Compendium";
}

constructor() {
Expand Down

0 comments on commit dc9df64

Please sign in to comment.