Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -426,13 +426,13 @@ def get_user_spaces():
|
|
426 |
|
427 |
<!-- Vercel Deployments -->
|
428 |
<h3 style='color: #333; margin: 20px 0;'>⚡ Vercel Deployments</h3>
|
429 |
-
<div id="vercel-container" style='display: grid; grid-template-columns: repeat(auto-fill, minmax(
|
430 |
{"".join(get_vercel_card(dep, idx) for idx, dep in enumerate(vercel_deployments))}
|
431 |
</div>
|
432 |
|
433 |
<!-- Hugging Face Spaces -->
|
434 |
<h3 style='color: #333; margin: 20px 0;'>🤗 Hugging Face Spaces</h3>
|
435 |
-
<div style='display: grid; grid-template-columns: repeat(auto-fill, minmax(
|
436 |
{"".join(get_space_card(space, idx) for idx, space in enumerate(user_spaces))}
|
437 |
</div>
|
438 |
</div>
|
|
|
426 |
|
427 |
<!-- Vercel Deployments -->
|
428 |
<h3 style='color: #333; margin: 20px 0;'>⚡ Vercel Deployments</h3>
|
429 |
+
<div id="vercel-container" style='display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;'>
|
430 |
{"".join(get_vercel_card(dep, idx) for idx, dep in enumerate(vercel_deployments))}
|
431 |
</div>
|
432 |
|
433 |
<!-- Hugging Face Spaces -->
|
434 |
<h3 style='color: #333; margin: 20px 0;'>🤗 Hugging Face Spaces</h3>
|
435 |
+
<div style='display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;'>
|
436 |
{"".join(get_space_card(space, idx) for idx, space in enumerate(user_spaces))}
|
437 |
</div>
|
438 |
</div>
|