We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6372818 commit e21d15aCopy full SHA for e21d15a
src/bar-card.ts
@@ -88,7 +88,13 @@ export class BarCard extends LitElement {
88
.header=${this._config.title ? this._config.title : null}
89
style="${this._config.entity_row ? 'background: #0000; box-shadow: none;' : ''}"
90
>
91
- <div id="states" class="card-content" style="${this._config.entity_row ? 'padding: 0px;' : ''}">
+ <div
92
+ id="states"
93
+ class="card-content"
94
+ style="${this._config.entity_row ? 'padding: 0px;' : ''} ${this._config.direction == 'up'
95
+ ? ''
96
+ : 'flex-grow: 0;'}"
97
+ >
98
${this._createBarArray()}
99
</div>
100
</ha-card>
src/const.ts
@@ -1 +1 @@
1
-export const CARD_VERSION = '3.1.5';
+export const CARD_VERSION = '3.1.6';
0 commit comments