diff options
| author | HJ <spam@hjkos.com> | 2019-02-15 12:29:08 +0000 |
|---|---|---|
| committer | HJ <spam@hjkos.com> | 2019-02-15 12:29:08 +0000 |
| commit | 4f95371081fd54291e3d81d7e254e9cfa1bd5b82 (patch) | |
| tree | 1e0cf0053ee2843a3f714bfd990cef090183f492 /src/App.js | |
| parent | 7bc8fd1a5b18676861bd8ca7ff848a48ca542087 (diff) | |
| parent | 8f0e6b50454a3b8e776640a895519cdc57872a92 (diff) | |
Merge branch 'issue-361-preview-background' into 'develop'
#361 - fix theme preview background
Closes #361
See merge request pleroma/pleroma-fe!588
Diffstat (limited to 'src/App.js')
| -rw-r--r-- | src/App.js | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -68,10 +68,14 @@ export default { logo () { return this.$store.state.instance.logo }, bgStyle () { return { - '--body-background-image': `url(${this.background})`, 'background-image': `url(${this.background})` } }, + bgAppStyle () { + return { + '--body-background-image': `url(${this.background})` + } + }, sitename () { return this.$store.state.instance.name }, chat () { return this.$store.state.chat.channel.state === 'joined' }, suggestionsEnabled () { return this.$store.state.instance.suggestionsEnabled }, |
