mirror of
https://github.com/imputnet/cobalt.git
synced 2024-12-28 18:46:09 +00:00
web/remux: fix scroll on short screens
This commit is contained in:
parent
b737dbacd6
commit
7fc3d70d71
|
@ -207,7 +207,12 @@
|
||||||
/>
|
/>
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<DropReceiver id="remux-container" bind:draggedOver bind:file>
|
<DropReceiver
|
||||||
|
bind:file
|
||||||
|
bind:draggedOver
|
||||||
|
id="remux-container"
|
||||||
|
classes={processing ? "processing" : ""}
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
id="remux-open"
|
id="remux-open"
|
||||||
class:processing
|
class:processing
|
||||||
|
@ -372,4 +377,12 @@
|
||||||
gap: var(--padding);
|
gap: var(--padding);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (max-height: 750px) and (max-width: 535px) {
|
||||||
|
:global(#remux-container:not(.processing)) {
|
||||||
|
justify-content: start;
|
||||||
|
align-items: start;
|
||||||
|
padding-top: var(--padding);
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue