Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

Commit

Permalink
Window Shrinking Bug Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
a-thansen committed Oct 31, 2023
1 parent 995d28d commit 2d6a195
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 8 deletions.
5 changes: 5 additions & 0 deletions frontend/src/css/month_filter.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
width: inherit;
}

.react-datepicker__month-container {
float: left;
width: 200px;
}

.react-datepicker-wrapper {
width: 100%;
}
12 changes: 8 additions & 4 deletions frontend/src/css/navbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,30 @@
.nav-container {
position: relative;
width: 15%;
min-width: fit-content;
height: 100%;
margin-top: 0.7%;
margin-top: 13px;
margin-left: 0.4%;
align-self: flex-start;
}

.picker-container {
position: relative;
width: 15%;
min-width: fit-content;
height: 100%;
margin-top: 0.7%;
margin-top: 10px;
align-self: flex-start;
}

.filter-container {
position: relative;
width: 5%;
width: 6%;
min-width: fit-content;
height: 100%;
margin-top: 1%;
margin-top: 13px;
align-self: flex-start;
flex-basis: auto;
}

.nav-tab {
Expand Down
13 changes: 9 additions & 4 deletions frontend/src/css/search.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
left: 0%; /* This need to be improve later to align with the left side of search input box*/
top: calc(100% + 2px);
width: 120%;
background-color: #ddddddbd;
background-color: #dddddd8e;
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 5px;
overflow: hidden;
background-color: #f6f6f6;
background-color: #f6f6f6be;
box-shadow: 0px 2px 10px 2px rgba(0, 0, 0, 0.1);
z-index: calc(var(--navbar-z-index)+20);
}
Expand Down Expand Up @@ -77,15 +77,20 @@
/* Address text format*/
.geoapify-autocomplete-item .address {
display: flex;
width: 230px;
min-width: 230px;
flex-direction: column;
align-items: flex-start;
margin-left: 12px;
text-align: left;
margin-left: 7px;
}

.geoapify-autocomplete-item .address .secondary-part {
margin: 0;
margin-left: -4px;
overflow-wrap: break-word;
hyphens: manual;
text-align: left;
z-index: calc(var(--navbar-z-index)+22);
}

.geoapify-close-button {
Expand Down

0 comments on commit 2d6a195

Please sign in to comment.