Skip to content
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

Svg Fix For Webkit Browsers #59

Merged
merged 17 commits into from
Apr 18, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
small fix to adjust FloorItem's placement
BoundlessFate committed Apr 18, 2024
commit 5cdefdebd3283181706877db5a7c258b3aac2f6b
2 changes: 1 addition & 1 deletion src/components/home/FloorItem.vue
Original file line number Diff line number Diff line change
@@ -130,7 +130,7 @@ export default {
// If wide landscape
} else if (this.global.aspectRatio <= this.global.flipScreen) {
floorBox.style.transform =
`translate(calc(60vw - 450px), calc(60vh - 450px))
`translate(calc(60vw - 450px), calc(55vh - 450px))
scale(${(window.innerWidth) * 0.57 / 50 + this.zoom})`;
// If portrait wide mode
} else if (this.global.aspectRatio <= 1.85) {