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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -6
app.py CHANGED
@@ -40,17 +40,19 @@ def test(inp):
40
 
41
  .grid-mee {
42
 
43
- display: grid;
44
- justify-items:start;
45
-
46
-
47
- width: 100%;
 
 
48
  }
49
 
50
 
51
  .container-mee {
52
 
53
- position: absolute;
54
  overflow: hidden;
55
  width: 49%;
56
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
 
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
 
53
  .container-mee {
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) */