svelte app container is positioned center of screen

Hi, My svelte app container occupies the middle third of the screen. How do i create a full screen container aligned left.
Thanks for any help

it appears that in the same folder as app.svelte there’s also app.css in this css there’s

#app {
  max-width: 1280px;
  padding: 2rem;
  text-align: center;
  margin: 0 auto; 
}

If i remove text-align: center; and margin: 0 auto;
then the problem is solved. Don’t understand the purpose of putting this css into the svelte framework!

Can you share a link to your page? Seeing all of the CSS in action can help quite a bit here :grinning: