navneetsharmaui / sveltekit-starter

Sveltekit starter project created with sveltekit, typescript, tailwindcss, postcss, husky, and storybook. The project has the structure set up for the scaleable web application.
https://sveltekit-starter-one.vercel.app
MIT License
609 stars 100 forks source link

Entire Home Page HTML body tag is not showing fully #40

Closed Slyracoon23 closed 2 years ago

Slyracoon23 commented 2 years ago

Describe the bug

Home page does not show entire HTML body tag.

To Reproduce

Steps to reproduce the behavior:

  1. Git clone sveltekit-starter
  2. yarn install
  3. yarn run dev -- --open

Expected behavior

By removing the tailwind.css starter class css, flex display.

#starter {
    /* display: flex; */
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}

The correct layout was achieved image

Screenshots

Current issue image

Desktop

Please complete the following information

github-actions[bot] commented 2 years ago

Thanks for creating the issue. Attach the details about the issue.

github-actions[bot] commented 2 years ago

The issue had been stale for a long time. Closing the issue for now. You can reopen the issue.

digi4care commented 2 years ago

after or before doesnt matter really do run the "add-css" script

npm run add-css

there are a few css npm scripts available

Slyracoon23 commented 2 years ago

Cool, thanks.