Skip to content

Commit

Permalink
bug fix on find a pace mob
Browse files Browse the repository at this point in the history
  • Loading branch information
dinesh4343 committed Nov 14, 2023
1 parent 622f404 commit 0362083
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion styles/find-a-place.css
Original file line number Diff line number Diff line change
Expand Up @@ -104,17 +104,38 @@ input {

#suggestions li:hover {
background-color: #ddd;

}

/* Default styles for larger screens */
#routeList {
display: flex;
text-align: justify;

flex-direction: column;
}
#routeList {

justify-content:space-around;

margin-bottom: 70px;


}

.route{
position: relative;
top: -50px;
display: flex;
justify-content: center; /* Horizontal centering */
align-items: center; /* Vertical centering */

cursor: pointer;
}

/* Media query for screens with a maximum width of 600 pixels */
@media only screen and (max-width: 600px) {
#routeList {
width: 100%;
width: 75%;
}
}

0 comments on commit 0362083

Please sign in to comment.