fix?
This commit is contained in:
parent
a1d62756b1
commit
ca941cd4fc
2 changed files with 11 additions and 3 deletions
|
|
@ -395,7 +395,6 @@ document.addEventListener('DOMContentLoaded', async () => {
|
||||||
const lastfmToggleSetting = document.getElementById('lastfm-toggle-setting');
|
const lastfmToggleSetting = document.getElementById('lastfm-toggle-setting');
|
||||||
|
|
||||||
window.loadHomeFeed = loadHomeFeed;
|
window.loadHomeFeed = loadHomeFeed;
|
||||||
|
|
||||||
function positionContextMenu(menu, x, y, preferLeft = false) {
|
function positionContextMenu(menu, x, y, preferLeft = false) {
|
||||||
menu.style.display = 'block';
|
menu.style.display = 'block';
|
||||||
menu.style.visibility = 'hidden';
|
menu.style.visibility = 'hidden';
|
||||||
|
|
|
||||||
13
styles.css
13
styles.css
|
|
@ -117,6 +117,8 @@
|
||||||
html {
|
html {
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
height: 100%;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
|
@ -125,6 +127,9 @@ body {
|
||||||
font-family: 'Inter', sans-serif;
|
font-family: 'Inter', sans-serif;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
transition: background-color 0.3s ease, color 0.3s ease;
|
transition: background-color 0.3s ease, color 0.3s ease;
|
||||||
|
height: 100%;
|
||||||
|
position: fixed;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
|
|
@ -142,6 +147,7 @@ a {
|
||||||
.app-container {
|
.app-container {
|
||||||
display: grid;
|
display: grid;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
|
height: 100dvh;
|
||||||
grid-template:
|
grid-template:
|
||||||
"sidebar main" 1fr
|
"sidebar main" 1fr
|
||||||
"player player" auto / 280px 1fr;
|
"player player" auto / 280px 1fr;
|
||||||
|
|
@ -1008,7 +1014,7 @@ input:checked + .slider::before {
|
||||||
#context-menu,
|
#context-menu,
|
||||||
.queue-track-menu {
|
.queue-track-menu {
|
||||||
display: none;
|
display: none;
|
||||||
position: absolute;
|
position: fixed;
|
||||||
background-color: var(--card);
|
background-color: var(--card);
|
||||||
border: 1px solid var(--border);
|
border: 1px solid var(--border);
|
||||||
border-radius: var(--radius);
|
border-radius: var(--radius);
|
||||||
|
|
@ -1557,6 +1563,8 @@ input:checked + .slider::before {
|
||||||
"header" auto
|
"header" auto
|
||||||
"main" 1fr
|
"main" 1fr
|
||||||
"player" auto / 1fr;
|
"player" auto / 1fr;
|
||||||
|
height: 100vh;
|
||||||
|
height: 100dvh;
|
||||||
}
|
}
|
||||||
|
|
||||||
.main-content {
|
.main-content {
|
||||||
|
|
@ -1640,6 +1648,7 @@ input:checked + .slider::before {
|
||||||
padding: var(--spacing-md);
|
padding: var(--spacing-md);
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.now-playing-bar .track-info {
|
.now-playing-bar .track-info {
|
||||||
grid-area: track;
|
grid-area: track;
|
||||||
|
|
@ -1688,7 +1697,7 @@ input:checked + .slider::before {
|
||||||
}
|
}
|
||||||
|
|
||||||
#download-notifications {
|
#download-notifications {
|
||||||
bottom: 160px;
|
bottom: 10px;
|
||||||
right: 10px;
|
right: 10px;
|
||||||
left: 10px;
|
left: 10px;
|
||||||
max-width: none;
|
max-width: none;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue