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

Commit

Permalink
Top Bar Revamp (Bug Fixes)
Browse files Browse the repository at this point in the history
  • Loading branch information
a-thansen authored and Seb-sti1 committed Nov 3, 2023
1 parent 64c9155 commit 60b4469
Show file tree
Hide file tree
Showing 7 changed files with 47 additions and 9 deletions.
9 changes: 9 additions & 0 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions frontend/src/Components/Conditions/ConditionsMap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ import { GeoJSON } from 'react-leaflet';
import { Layer, PathOptions } from 'leaflet';
import { Feature, FeatureCollection } from 'geojson';

import Search from '../Map/Search';
import MonthFilter from '../Map/MonthFilter';
import Search from '../Map/Inputs/Search';
import MonthFilter from '../Map/Inputs/MonthFilter';

import MapWrapper from '../Map/MapWrapper';
import Selector from '../Map/Inputs/Selector';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useState } from 'react';
import DatePicker from 'react-datepicker';
import '../../css/month_filter.css';
import '../../../css/month_filter.css';

interface Props {
/** function taking argument "date" for Start Date **/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
GeoapifyContext,
} from '@geoapify/react-geocoder-autocomplete';
import '@geoapify/geocoder-autocomplete/styles/minimal.css';
import '../../css/search.css';
import '../../../css/search.css';

interface Props {
/**
Expand Down
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
21 changes: 20 additions & 1 deletion frontend/src/css/search.css
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,28 @@
opacity: 0.9;
}

/* Address text format*/
.geoapify-autocomplete-item .address {
display: flex;
min-width: 230px;
flex-direction: column;
align-items: flex-start;
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 {
position: absolute;
right: 8px;
right: 0%;
width: 30px;
top: 0px;

Expand Down

0 comments on commit 60b4469

Please sign in to comment.