Browse Source

Be more explicit about hiding overflow at the top levels of an app

pull/1834/head
Andrew Kingston 5 years ago
parent
commit
aecebc96a7
  1. 7
      packages/client/src/components/ClientApp.svelte

7
packages/client/src/components/ClientApp.svelte

@ -91,14 +91,15 @@
{/if} {/if}
<style> <style>
#spectrum-root { #spectrum-root,
#app-root {
height: 100%; height: 100%;
width: 100%; width: 100%;
padding: 0;
margin: 0;
overflow: hidden; overflow: hidden;
} }
#app-root { #app-root {
height: 100%;
width: 100%;
position: relative; position: relative;
} }
</style> </style>

Loading…
Cancel
Save