1
0
mirror of https://github.com/taigrr/homer synced 2025-01-18 04:53:12 -08:00

chore: fix merge conflict on Generic

This commit is contained in:
Tai Groot 2020-10-28 21:53:55 -07:00
parent 553076011b
commit 0b8ea779f3
Signed by: taigrr
GPG Key ID: D00C269A87614812
2 changed files with 6 additions and 1 deletions

View File

@ -119,6 +119,7 @@ services:
type: "PiHole" # optional, loads a specific component that provides extra features. MUST MATCH a file name (without file extension) available in `src/components/services`
target: "_blank" # optional html a tag target attribute
# class: "green" # optional custom CSS class for card, useful with custom stylesheet
# background: red # optional color for card to set color directly without custom stylesheet
```
If you choose to fetch message information from an endpoint, the output format should be:

View File

@ -12,7 +12,11 @@ export default {};
<template>
<div>
<div class="card" :class="item.class">
<div
class="card"
:style="`background-color:${item.background};`"
:class="item.class"
>
<a
:href="item.url"
class="linkoverlay"