Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -357,13 +357,13 @@ def get_user_spaces():
|
|
357 |
|
358 |
<!-- Vercel Deployments -->
|
359 |
<h3 style='color: #333; margin: 20px 0;'>β‘ Vercel Deployments</h3>
|
360 |
-
<div id="vercel-container" style='display: grid; grid-template-columns: repeat(auto-fill, minmax(
|
361 |
{"".join(get_vercel_card(dep, idx) for idx, dep in enumerate(vercel_deployments))}
|
362 |
</div>
|
363 |
|
364 |
<!-- Hugging Face Spaces -->
|
365 |
<h3 style='color: #333; margin: 20px 0;'>π€ Hugging Face Spaces</h3>
|
366 |
-
<div style='display: grid; grid-template-columns: repeat(auto-fill, minmax(
|
367 |
{"".join(get_space_card(space, idx) for idx, space in enumerate(user_spaces))}
|
368 |
</div>
|
369 |
</div>
|
|
|
357 |
|
358 |
<!-- Vercel Deployments -->
|
359 |
<h3 style='color: #333; margin: 20px 0;'>β‘ Vercel Deployments</h3>
|
360 |
+
<div id="vercel-container" style='display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;'>
|
361 |
{"".join(get_vercel_card(dep, idx) for idx, dep in enumerate(vercel_deployments))}
|
362 |
</div>
|
363 |
|
364 |
<!-- Hugging Face Spaces -->
|
365 |
<h3 style='color: #333; margin: 20px 0;'>π€ Hugging Face Spaces</h3>
|
366 |
+
<div style='display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;'>
|
367 |
{"".join(get_space_card(space, idx) for idx, space in enumerate(user_spaces))}
|
368 |
</div>
|
369 |
</div>
|