Skip to content

Commit

Permalink
set style attribute height to important
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerwyn committed Oct 10, 2023
1 parent 77f3d3a commit f15fca3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/android-tv-card.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/android-tv-card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ class AndroidTVCard extends LitElement {
case 'navigation_touchpad': {
let style = ``;
if (this._config['touchpad_height']) {
style = `style="height:${this._config['touchpad_height']}"`;
style = `style="height: ${this._config['touchpad_height']} !important"`;
}
const touchpad = html`
<toucharea
Expand Down

0 comments on commit f15fca3

Please sign in to comment.