Dual gauge card

Hi,

Downloaded dual gauge card from HACS, updated ui-lovelace.yaml with following and restarted HA, but I can’t find the card. Any ideas please?

In your ui-lovelace.yaml add this:

  - url: /community_plugin/dual-gauge-card/dual-gauge-card.js
    type: js

I realize I need to start with blank card and am close to what I need except the title on bottom too big. Also temp is showing as 74.1 as opposed to 74.

type: custom:dual-gauge-card
title: House
card_mod:
  style: |
    ha-card {
      font-size: 10px;
      margin-bottom: -10px;
      border-bottom: none;
      border-radius: 10px 10px 0px 0px;
outer:
  entity: sensor.ups_itemp_office
  unit: °F
  label: Temp
  value: "{{ states('sensor.ups_itemp_office') | round(0) }}"
  colors:
    - color: navy
      value: 32
    - color: rgb(85, 190, 233)
      value: 50
    - color: rgb(143, 233, 85)
      value: 70
    - color: rgb(85, 233, 199)
      value: 90
inner:
  entity: sensor.ups_humidity_office
  unit: "%"
  label: Hum
  colors:
    - color: rgb(255, 0, 0)
      value: 10
    - color: rgb(255, 153, 0)
      value: 40
    - color: rgb(255, 255, 0)
      value: 70
    - color: rgb(0, 255, 0)
      value: 100
min: 0
max: 100

image