mirror of
https://github.com/koel/koel
synced 2024-11-28 06:50:27 +00:00
fix: z-index problem on mobile
This commit is contained in:
parent
64229568a1
commit
922696484f
3 changed files with 3 additions and 3 deletions
|
@ -57,7 +57,7 @@ footer {
|
|||
box-shadow: 0 0 30px 20px rgba(0, 0, 0, .2);
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
z-index: 3;
|
||||
|
||||
.wrapper {
|
||||
display: flex;
|
||||
|
|
|
@ -129,7 +129,7 @@ onMounted(() => isMobile.any || (activeTab.value = preferenceStore.activeExtraPa
|
|||
flex-direction: row-reverse;
|
||||
color: var(--color-text-secondary);
|
||||
height: var(--header-height);
|
||||
z-index: 1;
|
||||
z-index: 2;
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
@include themed-background();
|
||||
|
|
|
@ -302,7 +302,7 @@ onMounted(() => render())
|
|||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: scroll;
|
||||
overflow: auto;
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
padding: 0 12px;
|
||||
|
|
Loading…
Reference in a new issue