Skip to content

Commit

Permalink
Merge pull request #37 from JurajNyiri/2.1.1
Browse files Browse the repository at this point in the history
2.1.1
  • Loading branch information
JurajNyiri authored Aug 31, 2021
2 parents 23cf87f + a123674 commit 18370f0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions dist/plex-meets-homeassistant.js
Original file line number Diff line number Diff line change
Expand Up @@ -20701,6 +20701,7 @@ style.textContent = css `
white-space: nowrap;
overflow: hidden;
position: relative;
min-width: 100% !important;
}
.seasonContainer {
position: relative;
Expand Down Expand Up @@ -20749,7 +20750,7 @@ style.textContent = css `
position: absolute;
z-index: 1;
}
.container {
.plexMeetsContainer {
z-index: 1;
float: left;
margin-bottom: 20px;
Expand Down Expand Up @@ -22149,7 +22150,7 @@ class PlexMeetsHomeAssistant extends HTMLElement {
}
}
const container = document.createElement('div');
container.className = 'container';
container.className = 'plexMeetsContainer';
container.style.width = `${CSS_STYLE.width}px`;
if (hasAdditionalData) {
container.style.height = `${CSS_STYLE.height + 50}px`;
Expand Down
3 changes: 2 additions & 1 deletion src/modules/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,7 @@ style.textContent = css`
white-space: nowrap;
overflow: hidden;
position: relative;
min-width: 100% !important;
}
.seasonContainer {
position: relative;
Expand Down Expand Up @@ -369,7 +370,7 @@ style.textContent = css`
position: absolute;
z-index: 1;
}
.container {
.plexMeetsContainer {
z-index: 1;
float: left;
margin-bottom: 20px;
Expand Down
2 changes: 1 addition & 1 deletion src/plex-meets-homeassistant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1506,7 +1506,7 @@ class PlexMeetsHomeAssistant extends HTMLElement {
}

const container = document.createElement('div');
container.className = 'container';
container.className = 'plexMeetsContainer';
container.style.width = `${CSS_STYLE.width}px`;
if (hasAdditionalData) {
container.style.height = `${CSS_STYLE.height + 50}px`;
Expand Down

0 comments on commit 18370f0

Please sign in to comment.