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}
<style>
#spectrum-root {
#spectrum-root,
#app-root {
height: 100%;
width: 100%;
padding: 0;
margin: 0;
overflow: hidden;
}
#app-root {
height: 100%;
width: 100%;
position: relative;
}
</style>

Loading…
Cancel
Save