Skip to content

Commit 6d08dba

Browse files
committed
fix: update max-width for status images in Desktop component for better responsiveness
1 parent 4e522d6 commit 6d08dba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/info/(Info)/desktop/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export default function Desktop() {
107107
<img
108108
src="https://status.sig.school/api/badge/1/uptime?labelPrefix=前端+&style=for-the-badge"
109109
alt="frontend-status"
110-
className="h-auto w-full max-w-xs" />
110+
className="h-auto w-full max-w-[15rem]" />
111111
</div>
112112

113113
<div>
@@ -123,15 +123,15 @@ export default function Desktop() {
123123
<img
124124
src="https://status.sig.school/api/badge/8/uptime?labelPrefix=後端+&style=for-the-badge"
125125
alt="backend-status"
126-
className="h-auto w-full max-w-xs" />
126+
className="h-auto w-full max-w-[15rem]" />
127127
</div>
128128

129129
<div>
130130
<p className="text-base text-[#003f47] mb-2">資料庫</p>
131131
<img
132132
src="https://status.sig.school/api/badge/6/uptime?labelPrefix=資料庫+&style=for-the-badge"
133133
alt="database-status"
134-
className="h-auto w-full max-w-xs" />
134+
className="h-auto w-full max-w-[15rem]" />
135135
</div>
136136
</div>
137137
</div>

0 commit comments

Comments
 (0)