feat: 发布 v0.3.0 移动端答题优化

This commit is contained in:
2026-06-23 00:51:32 +02:00
parent 89675a526f
commit 81a70137a9
11 changed files with 134 additions and 71 deletions
@@ -6,7 +6,7 @@ interface ProgressBarProps {
export function ProgressBar({ completionPercentage }: ProgressBarProps) {
return (
<div className="w-full h-2 bg-gray-200 rounded-full overflow-hidden mb-2">
<div className="mb-4 h-1.5 w-full overflow-hidden rounded-full bg-gray-200 md:mb-2 md:h-2">
<div
className="h-full bg-green-500 transition-all duration-300"
style={{ width: `${completionPercentage}%` }}