Skip to content

Commit

Permalink
Update style.js (#113)
Browse files Browse the repository at this point in the history
Fix frontend border issue with new HA version
  • Loading branch information
SanchosPancho authored Mar 13, 2023
1 parent f616b89 commit c735ead
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/style.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,12 @@ const style = css`
-webkit-transform: translateZ(0);
transform: translateZ(0);
opacity: var(--mh-bg-opacity);
border-radius: var(--ha-card-border-radius, 0);
box-shadow: var(--ha-card-box-shadow, none);
box-sizing: border-box;
border-radius: var(--ha-card-border-radius, 12px);
border-width: var(--ha-card-border-width, 1px);
border-style: solid;
border-color: var(--ha-card-border-color, var(--divider-color, #e0e0e0) );
}
ha-card.--group .mh__bg {
background: none;
Expand Down

0 comments on commit c735ead

Please sign in to comment.