Update app.py
Browse files
app.py
CHANGED
@@ -30,7 +30,7 @@ custom_css = """
|
|
30 |
|
31 |
.example-gallery {
|
32 |
display: grid;
|
33 |
-
grid-template-columns: repeat(auto-fill, minmax(
|
34 |
gap: 20px;
|
35 |
padding: 20px;
|
36 |
}
|
@@ -47,7 +47,7 @@ custom_css = """
|
|
47 |
transform: translateY(-2px);
|
48 |
}
|
49 |
.example-item img {
|
50 |
-
width:
|
51 |
height: 80px; /* 100px → 80px */
|
52 |
object-fit: cover;
|
53 |
}
|
|
|
30 |
|
31 |
.example-gallery {
|
32 |
display: grid;
|
33 |
+
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* 200px → 150px */
|
34 |
gap: 20px;
|
35 |
padding: 20px;
|
36 |
}
|
|
|
47 |
transform: translateY(-2px);
|
48 |
}
|
49 |
.example-item img {
|
50 |
+
width: 80%;
|
51 |
height: 80px; /* 100px → 80px */
|
52 |
object-fit: cover;
|
53 |
}
|