hass-shutter-card icon indicating copy to clipboard operation
hass-shutter-card copied to clipboard

Request: buttons_position (add top/bottom)

Open txespirito opened this issue 4 years ago • 3 comments

Its possible to add the options top and botton to the button_possition? It is interresting to fit 2 next to each other in a horizontal stack. Especially on mobile, to save screen estate.

txespirito avatar Oct 20 '21 22:10 txespirito

You can try using card-mod to customize the layout of the shutter card. This worked for me:

type: custom:shutter-card
entities:
  - entity: cover.bedroom_3_blinds
    name: Bedroom 3
card_mod:
  style: |
    ha-card .sc-shutter-middle {
      width: 100%;
      flex-direction: column-reverse !important;
    }
    ha-card .sc-shutter-button + br {
      display: none;
    }

markblokpoel avatar Nov 05 '21 20:11 markblokpoel

I would like that too.

tenkaibr avatar Mar 01 '22 21:03 tenkaibr

would also like cleaner option than card mod

qvqn avatar Apr 22 '22 02:04 qvqn

Feature added with Pull Request #69

Deejayfool avatar Mar 03 '23 11:03 Deejayfool