Skip to content

Commit

Permalink
Merge branch 'main' into prod
Browse files Browse the repository at this point in the history
  • Loading branch information
maximvl committed Oct 6, 2024
2 parents 1c0f22f + edb547e commit d222825
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -141,3 +141,7 @@ div.Mui-focused {
span.MuiSlider-mark {
display: none;
}

span.MuiSlider-thumb:active {
box-shadow: none;
}
6 changes: 3 additions & 3 deletions src/pages/map/components/timelapse/TimelapseButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -289,12 +289,12 @@ function CustomThumb(props: any) {
{...props}
style={{
...props.style,
height: isActive ? '22px' : '18px',
width: isActive ? '14px' : '12px',
height: isActive ? '24px' : '18px',
width: isActive ? '16px' : '12px',
border: '1px solid white',
backgroundColor: Color.white,
borderRadius: isActive ? '10px' : '6px',
transform: isActive ? 'translate(-36%, -78%)' : 'translate(-34%, -84%)',
transform: isActive ? 'translate(-36%, -77%)' : 'translate(-34%, -84%)',
}}
/>
)
Expand Down

0 comments on commit d222825

Please sign in to comment.