Hi Community, im getting more and more into making my Dashboard fancy.
I Am now trying to add multi Entitys into 1 Card, i do that using the margin function in
card_mod:
style: |
ha-card {
to relocate the card into another card.
I now have the problem, that i see Border shadows inside that card. How do i get rid of it?
here is my Text of one of the Entity cards:
type: custom:mushroom-entity-card
entity: sensor.canister_consumption_cl_consumption
name: Tages Dosiermenge
icon: mdi:sine-wave
card_mod:
style: |
ha-card {
border-radius: 10px;
margin-top: -105px;
margin-bottom: 0px;
margin-left: 130px;
margin-right: 0px;
border: 0px;
background: unset;
--icon-size: 29px;
--card-primary-font-size: 12px;
--card-secondary-font-size: 12px;
}
I would be more than happy if someone could help me!