forked from AkkomaGang/akkoma-fe
Remove newlines from template literal.
This commit is contained in:
parent
960ed9540d
commit
8c43b3f505
1 changed files with 1 additions and 3 deletions
|
@ -63,9 +63,7 @@
|
||||||
headingStyle () {
|
headingStyle () {
|
||||||
let rgb = this.$store.state.config.colors['base00'].match(/\d+/g)
|
let rgb = this.$store.state.config.colors['base00'].match(/\d+/g)
|
||||||
return {
|
return {
|
||||||
backgroundColor: `rgb(${Math.floor(rgb[0] * 0.53)},
|
backgroundColor: `rgb(${Math.floor(rgb[0] * 0.53)}, ${Math.floor(rgb[1] * 0.56)}, ${Math.floor(rgb[2] * 0.59)})`,
|
||||||
${Math.floor(rgb[1] * 0.56)},
|
|
||||||
${Math.floor(rgb[2] * 0.59)})`,
|
|
||||||
backgroundImage: `url(${this.user.cover_photo})`
|
backgroundImage: `url(${this.user.cover_photo})`
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue