diff options
author | Tom Pansino <2768420+tpansino@users.noreply.github.com> | 2020-08-10 17:25:43 -0700 |
---|---|---|
committer | Tom Pansino <2768420+tpansino@users.noreply.github.com> | 2020-08-10 17:25:43 -0700 |
commit | 118d3e5ac0077edcf114fe1a052eb8e8e800fb81 (patch) | |
tree | c912561fe358753a7e46947cc127a5460b930b69 /src/components | |
parent | 687a9e4086ea57e2e614e453ef959263f89ba0a7 (diff) | |
download | homer-118d3e5ac0077edcf114fe1a052eb8e8e800fb81.tar.gz homer-118d3e5ac0077edcf114fe1a052eb8e8e800fb81.tar.zst homer-118d3e5ac0077edcf114fe1a052eb8e8e800fb81.zip |
Rename color: to colors:
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/Service.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/Service.vue b/src/components/Service.vue index 185d2a7..1766af6 100644 --- a/src/components/Service.vue +++ b/src/components/Service.vue | |||
@@ -4,7 +4,7 @@ | |||
4 | <a :href="item.url" :target="item.target" rel="noreferrer"> | 4 | <a :href="item.url" :target="item.target" rel="noreferrer"> |
5 | <div | 5 | <div |
6 | class="card-content" | 6 | class="card-content" |
7 | :style="(item.color && item.color.background) ? {backgroundColor: item.color.background} : null" | 7 | :style="(item.colors && item.colors.background) ? {backgroundColor: item.colors.background} : null" |
8 | > | 8 | > |
9 | <div class="media"> | 9 | <div class="media"> |
10 | <div v-if="item.logo" class="media-left"> | 10 | <div v-if="item.logo" class="media-left"> |
@@ -20,11 +20,11 @@ | |||
20 | <div class="media-content"> | 20 | <div class="media-content"> |
21 | <p | 21 | <p |
22 | class="title is-4" | 22 | class="title is-4" |
23 | :style="(item.color && item.color.text) ? {color: item.color.text} : null" | 23 | :style="(item.colors && item.colors.text) ? {color: item.colors.text} : null" |
24 | >{{ item.name }}</p> | 24 | >{{ item.name }}</p> |
25 | <p | 25 | <p |
26 | class="subtitle is-6" | 26 | class="subtitle is-6" |
27 | :style="(item.color && item.color.text) ? {color: item.color.text} : null" | 27 | :style="(item.colors && item.colors.text) ? {color: item.colors.text} : null" |
28 | >{{ item.subtitle }}</p> | 28 | >{{ item.subtitle }}</p> |
29 | </div> | 29 | </div> |
30 | </div> | 30 | </div> |