diff --git a/src/controllers/itemDetails/index.js b/src/controllers/itemDetails/index.js index 71aebc57a4..79f2b70f74 100644 --- a/src/controllers/itemDetails/index.js +++ b/src/controllers/itemDetails/index.js @@ -533,10 +533,9 @@ function reloadFromItem(instance, page, params, item, user) { // Start rendering the artwork first renderImage(page, item, apiClient); - // Save some screen real estate in TV mode - if (!layoutManager.tv) { - renderLogo(page, item, apiClient); - } + + renderLogo(page, item, apiClient); + // Render the mobile header backdrop if (layoutManager.mobile) { renderHeaderBackdrop(page, item, apiClient); diff --git a/src/styles/librarybrowser.scss b/src/styles/librarybrowser.scss index 9ec55e0bde..574040abee 100644 --- a/src/styles/librarybrowser.scss +++ b/src/styles/librarybrowser.scss @@ -921,8 +921,11 @@ position: relative; } -.layout-mobile .detailLogo { - display: none; +.layout-mobile, +.layout-tv { + .detailLogo { + display: none; + } } @media all and (max-width: 68.75em) {