Omnibus commited on
Commit
390bd6e
·
1 Parent(s): 201d07e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -6
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: nowrap;
46
- justify-content: flex-start;
47
  align-items: stretch;
48
- align-content: stretch;
49
-
50
  }
51
 
52
 
@@ -54,7 +52,7 @@ def test(inp):
54
 
55
  position: relative;
56
  overflow: hidden;
57
- width: 49%;
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