|
@@ -4,7 +4,6 @@ import useMap from '../../../hooks/useMap';
|
|
|
import useMarkersFromGuesses from '../../../hooks/useMarkersFromGuesses';
|
|
|
|
|
|
const RoundSelectContainer = styled.div`
|
|
|
- /* background-color: #444; */
|
|
|
height: 100%;
|
|
|
display: flex;
|
|
|
flex-flow: column wrap;
|
|
@@ -14,7 +13,7 @@ const RoundSelectContainer = styled.div`
|
|
|
`;
|
|
|
|
|
|
const RoundSelectButton = styled.div`
|
|
|
- background-color: ${({active}) => active ? "#777" : "#555"};
|
|
|
+ background-color: ${({active}) => active ? "#888" : "#555"};
|
|
|
height: 2em;
|
|
|
width: 2em;
|
|
|
margin-top: 1px;
|
|
@@ -29,14 +28,17 @@ const RoundSelectButton = styled.div`
|
|
|
const ResetRoundSelectButton = styled(RoundSelectButton).attrs({
|
|
|
active: false,
|
|
|
})`
|
|
|
+ width: calc(2em - 2px);
|
|
|
+ margin-left: 2px;
|
|
|
margin-top: auto;
|
|
|
margin-bottom: 0px;
|
|
|
+ border-radius: 20%;
|
|
|
`;
|
|
|
|
|
|
const MapDiv = styled.div`
|
|
|
height: 100%;
|
|
|
width: 60vw;
|
|
|
- border: #555 solid 2px;
|
|
|
+ border: #888 solid 4px;
|
|
|
`;
|
|
|
|
|
|
const MapContainer = styled.div`
|