Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New explore dropdown UI #2336

Open
wants to merge 9 commits into
base: develop
Choose a base branch
from
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,22 @@
background-color: $backgroundColor;
border-radius: 12px;
margin-top: 10px;
padding: 14px 16px;
padding: 8px;
box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.12);

@include xsPhoneView {
position: absolute;
}
}

.exploreContainer {
width: 150px;
}

.toggleMainContainer {
padding: 15px 9px;
height: 14px;
display: flex;
align-items: center;
justify-content: space-between;
background: rgba(0, 122, 73, 0.05);
border-radius: 8px;
}

.toggleContainer {
Expand Down Expand Up @@ -86,11 +85,9 @@
}

.exploreDescription {
padding: 8px;
height: fit-content;
margin-top: 14px;
background-color: rgba(var(--explore-description-background-color-new), 1);
font-size: $fontXXSmall;
margin-top: 8px;
font-size: $fontXXXSmallNew;
border-radius: 6px;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const MapSettings: FC<MapSettingsProps> = ({ mapOptions, updateMapOption }) => {

return (
<div className={styles.exploreMainContainer}>
<div className={styles.exploreContainer}>
<div>
<div>
{/* <MapLayerToggle
infoIcon={<InfoIcon width={'10px'} />}
Expand Down
Loading