1
0
Fork 0
mirror of synced 2024-06-30 20:10:54 +12:00

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

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>