Code below, I'm trying to set up a 3-column horizontal stack where the first two columns are eg 20% width and the 3rd column is the remaining 60%, but I can't work out what I should be modifying. I tried setting the 1st to 20% and last to 60% but it just makes them all small...
This is specifically for use with lovelace-wallpanel https://github.com/j-a-n/lovelace-wallpanel in case that makes any difference
<etc> = personal details redacted
`type: horizontal-stack
card_mod:
style:
hui-horizontal-stack-card $: |
div#root > :first-child > * {
width: 20%;
flex: auto;
}
div#root > :last-child > * {
width: 60%;
flex: auto;
}
cards:
- initial_view: listWeek
type: calendar
entities:- <etc>
title: Family
- <etc>
- initial_view: listWeek
type: calendar
entities:- <etc>
title: Racing
- <etc>
- show_state: true
show_name: true
camera_view: auto
type: picture-entity
entity: <etc>
grid_options:
columns: 48
rows: auto`