Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -39,14 +39,12 @@ def test(inp):
|
|
39 |
style = '''
|
40 |
|
41 |
.grid-mee {
|
42 |
-
|
43 |
display: flex;
|
44 |
flex-direction: row;
|
45 |
-
flex-wrap:
|
46 |
-
justify-content:
|
47 |
align-items: stretch;
|
48 |
-
align-content:
|
49 |
-
|
50 |
}
|
51 |
|
52 |
|
@@ -54,7 +52,7 @@ def test(inp):
|
|
54 |
|
55 |
position: relative;
|
56 |
overflow: hidden;
|
57 |
-
width:
|
58 |
padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
|
59 |
}
|
60 |
|
|
|
39 |
style = '''
|
40 |
|
41 |
.grid-mee {
|
|
|
42 |
display: flex;
|
43 |
flex-direction: row;
|
44 |
+
flex-wrap: wrap;
|
45 |
+
justify-content: space-evenly;
|
46 |
align-items: stretch;
|
47 |
+
align-content: space-evenly;
|
|
|
48 |
}
|
49 |
|
50 |
|
|
|
52 |
|
53 |
position: relative;
|
54 |
overflow: hidden;
|
55 |
+
width: 100%;
|
56 |
padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
|
57 |
}
|
58 |
|