forked from AkkomaGang/akkoma-fe
Fix race condition in color calculation.
This commit is contained in:
parent
fc341aa40d
commit
85cf036acd
1 changed files with 7 additions and 4 deletions
|
@ -61,11 +61,14 @@
|
||||||
props: [ 'user' ],
|
props: [ 'user' ],
|
||||||
computed: {
|
computed: {
|
||||||
headingStyle () {
|
headingStyle () {
|
||||||
|
let color = this.$store.state.config.colors['base00']
|
||||||
|
if (color) {
|
||||||
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)}, ${Math.floor(rgb[1] * 0.56)}, ${Math.floor(rgb[2] * 0.59)})`,
|
backgroundColor: `rgb(${Math.floor(rgb[0] * 0.53)}, ${Math.floor(rgb[1] * 0.56)}, ${Math.floor(rgb[2] * 0.59)})`,
|
||||||
backgroundImage: `url(${this.user.cover_photo})`
|
backgroundImage: `url(${this.user.cover_photo})`
|
||||||
}
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
bodyStyle () {
|
bodyStyle () {
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in a new issue