Skip to content

Commit

Permalink
Fix voice ball aspect ratio in fullscreen mode (#555)
Browse files Browse the repository at this point in the history
Fixes #542

Add CSS rule to maintain the aspect ratio of the voice ball when entering fullscreen mode.

* **apps/style/edge.css**
  - Add CSS rule `#voiceBall { aspect-ratio: 1; }` to ensure the voice ball maintains its shape when entering fullscreen mode.

* **.devcontainer/devcontainer.json**
  - Add a new file with build task configuration.

---

For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/tjy-gitnub/win12/issues/542?shareId=XXXX-XXXX-XXXX-XXXX).
  • Loading branch information
fzlzjerry authored Feb 7, 2025
1 parent 6d10de2 commit e401cd8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"tasks": {
"build": "# No build commands are necessary for this project."
}
}
6 changes: 5 additions & 1 deletion apps/style/edge.css
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,8 @@
.reloading>svg>circle:last-child {
stroke: #2983cc;
stroke-width: 2px;
}
}

#voiceBall {
aspect-ratio: 1;
}

0 comments on commit e401cd8

Please sign in to comment.