diff --git a/materialious/src/routes/watch/[slug]/+page.svelte b/materialious/src/routes/watch/[slug]/+page.svelte index 690ebe16..464093df 100644 --- a/materialious/src/routes/watch/[slug]/+page.svelte +++ b/materialious/src/routes/watch/[slug]/+page.svelte @@ -275,79 +275,90 @@ {/if} - - - {#if data.downloadOptions.length > 0} - - {/if} - {#if data.personalPlaylists} + +
+ - {:else} - - {/if} + + {#if data.downloadOptions.length > 0} + + {/if} + {#if data.personalPlaylists} + + {:else} + + {/if} +
@@ -469,7 +480,25 @@ @media screen and (max-width: 1000px) { .video-actions { - justify-content: flex-start; + align-items: flex-start; + flex-direction: column; + } + } + + @media screen and (max-width: 1000px) { + .video-actions > div { + margin-top: 1em; + } + } + + @media screen and (max-width: 1000px) { + menu { + position: fixed; + top: 50%; + left: 50%; + width: 100%; + transform: translate(-50%, 50%); + background-color: var(--surface-variant); } }