Skip to content

Layout issue with the initialization interface #284

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
sunye-cn opened this issue May 19, 2023 · 3 comments
Closed

Layout issue with the initialization interface #284

sunye-cn opened this issue May 19, 2023 · 3 comments

Comments

@sunye-cn
Copy link

When I create a new Vue project using Vite and run "npm run dev", a half-heart-shaped icon appears on the left side of the page in both Edge and Chrome browsers. After investigating, I found that this icon is related to the "Support Vue" option on the left side of the page and appears only when the page is zoomed out. Furthermore, the icon does not appear on the left side of the page when the page is zoomed in. I'm wondering if this is an intentional design or a bug.
image
image

@henk-n
Copy link

henk-n commented May 21, 2023

I had the same issue and I fixed this with a minor change in the css

src/assets/base.css

*::after {
  box-sizing: border-box;
  margin: 0;
  position: relative; <--- was missing
  font-weight: normal;
}

@skirtles-code
Copy link

I believe PR #278 should fix this. It has already been merged, so it should be included in the next release.

@haoqunjiang
Copy link
Member

Fixed in the latest release.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants