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:
parent
553076011b
commit
0b8ea779f3
@ -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:
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user