BraydenMoore commited on
Commit
8503381
·
1 Parent(s): 72c3159

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +12 -13
templates/index.html CHANGED
@@ -60,6 +60,10 @@
60
  object-fit: contain;
61
  }
62
 
 
 
 
 
63
  .map-div {
64
  width: 100%;
65
  object-fit: contain;
@@ -76,19 +80,14 @@
76
  }
77
 
78
  @media only screen and (max-width: 768px) {
79
- .flex-container {
80
- flex-direction: column;
81
- align-items: center;
82
- }
83
- .outer-container {
84
- width: 100%;
85
- }
86
- .feed {
87
- width: 90%; /* or set it to 100% if you want it to take the full width */
88
- }
89
- .info {
90
- width: 90%;
91
- }
92
  }
93
 
94
  </style>
 
60
  object-fit: contain;
61
  }
62
 
63
+ .feed, .info {
64
+ flex: 1;
65
+ }
66
+
67
  .map-div {
68
  width: 100%;
69
  object-fit: contain;
 
80
  }
81
 
82
  @media only screen and (max-width: 768px) {
83
+ .flex-container {
84
+ flex-direction: column;
85
+ align-items: center;
86
+ }
87
+ .feed, .info {
88
+ width: 90%; /* full width for mobile */
89
+ flex: none; /* reset flex for mobile */
90
+ }
 
 
 
 
 
91
  }
92
 
93
  </style>