BraydenMoore commited on
Commit
ba4374b
·
1 Parent(s): 6fc6081

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +16 -19
templates/index.html CHANGED
@@ -56,6 +56,8 @@
56
  border-width: 1px;
57
  border-color: yellow;
58
  margin-right: 3%;
 
 
59
  }
60
 
61
  .map-div {
@@ -71,26 +73,21 @@
71
  transition: 0.5s ease-in-out;
72
  }
73
 
74
- @media only screen and (max-width: 768px) {
75
- .flex-container {
76
- width: 90vw;
77
- flex-direction: column;
78
- align-items: center;
79
- }
80
-
81
- .outer-container {
82
- width: 90vw;
83
- }
84
-
85
- .feed {
86
- width: 500px;
87
- height: 500px;
88
- }
89
-
90
- .info {
91
- width: 90vw;
92
  }
93
- }
94
 
95
  </style>
96
  </head>
 
56
  border-width: 1px;
57
  border-color: yellow;
58
  margin-right: 3%;
59
+ max-width: 100%;
60
+ height: auto;
61
  }
62
 
63
  .map-div {
 
73
  transition: 0.5s ease-in-out;
74
  }
75
 
76
+ @media only screen and (max-width: 768px) {
77
+ .flex-container {
78
+ flex-direction: column;
79
+ align-items: center;
80
+ }
81
+ .outer-container {
82
+ width: 100%;
83
+ }
84
+ .feed {
85
+ width: 90%; /* or set it to 100% if you want it to take the full width */
86
+ }
87
+ .info {
88
+ width: 90%;
89
+ }
 
 
 
 
90
  }
 
91
 
92
  </style>
93
  </head>