Fix double #app id
This commit is contained in:
parent
3915716dd6
commit
f1724fb5ea
|
@ -119,7 +119,6 @@ const showSetInstanceModal = ref(false)
|
|||
|
||||
<template>
|
||||
<div
|
||||
id="app"
|
||||
:key="String(store.state.instance.instanceUrl)"
|
||||
:class="[store.state.ui.queueFocused ? 'queue-focused' : '',
|
||||
{'has-bottom-player': store.state.queue.tracks.length > 0}]"
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
justify-content: space-between !important;
|
||||
}
|
||||
}
|
||||
#app:not(.queue-focused) {
|
||||
#app > :not(.queue-focused) {
|
||||
.when-queue-focused {
|
||||
@include media("<desktop") {
|
||||
display: none;
|
||||
|
@ -36,7 +36,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
#app {
|
||||
#app > div {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
display: flex;
|
||||
|
@ -54,12 +54,12 @@
|
|||
border-bottom: none;
|
||||
border-top: 1px solid rgba(34, 36, 38, 0.15);
|
||||
}
|
||||
#app > main, #app > .main {
|
||||
#app > div > main, #app > .main {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
|
||||
#app {
|
||||
#app > div {
|
||||
> .main.pusher,
|
||||
> .footer {
|
||||
position: relative;
|
||||
|
@ -144,7 +144,7 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
#app.queue-focused {
|
||||
#app > .queue-focused {
|
||||
.queue-not-focused {
|
||||
@include media("<desktop") {
|
||||
display: none;
|
||||
|
@ -181,4 +181,4 @@
|
|||
overflow: auto;
|
||||
position: absolute;
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue