Skip to content

Commit

Permalink
Simplify map symbology
Browse files Browse the repository at this point in the history
  • Loading branch information
mileswwatkins committed Nov 25, 2023
1 parent 52d9914 commit f1c7a7a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -128,19 +128,20 @@ form > label {
}

.Map-circle {
cursor: pointer;
width: 10px;
height: 10px;
border-radius: 5px;
border-radius: 50%;
background-color: rgba(0, 0, 0, 0);
border-style: solid;
border-width: 1px;
border-color: #d00;
}

.Map-circle__active {
background: #d00;
}

.Map-circle__inactive {
background: #6e6e6e;
}

.Map-circle__selected {
box-shadow: 0px 0px 0px 1px black;
box-shadow: 0px 0px 0px 3px #d00;
}
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ class Map extends Component {
: "") +
(checkFilters(i, this.props.filters)
? "Map-circle__active "
: "Map-circle__inactive ")
: "")
}
onClick={(e) => {
this.setState({
Expand Down

0 comments on commit f1c7a7a

Please sign in to comment.