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

This commit is contained in:
Andrew Kingston 2021-06-24 12:14:19 +01:00
parent af2097e3eb
commit aecebc96a7
1 changed files with 6 additions and 5 deletions

View File

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