mirror of
https://github.com/imputnet/cobalt.git
synced 2024-12-28 02:26:10 +00:00
web/remux: fix scroll on short screens
This commit is contained in:
parent
b737dbacd6
commit
7fc3d70d71
|
@ -207,7 +207,12 @@
|
|||
/>
|
||||
</svelte:head>
|
||||
|
||||
<DropReceiver id="remux-container" bind:draggedOver bind:file>
|
||||
<DropReceiver
|
||||
bind:file
|
||||
bind:draggedOver
|
||||
id="remux-container"
|
||||
classes={processing ? "processing" : ""}
|
||||
>
|
||||
<div
|
||||
id="remux-open"
|
||||
class:processing
|
||||
|
@ -372,4 +377,12 @@
|
|||
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>
|
||||
|
|
Loading…
Reference in a new issue