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 |
}
|
@@ -48,7 +48,7 @@ custom_css = """
|
|
48 |
}
|
49 |
.example-item img {
|
50 |
width: 100%;
|
51 |
-
height:
|
52 |
object-fit: cover;
|
53 |
}
|
54 |
|
|
|
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 |
}
|
|
|
48 |
}
|
49 |
.example-item img {
|
50 |
width: 100%;
|
51 |
+
height: 80px; /* 100px → 80px */
|
52 |
object-fit: cover;
|
53 |
}
|
54 |
|