Skip to content

Commit

Permalink
trying to resync with main
Browse files Browse the repository at this point in the history
  • Loading branch information
PhillipsOwen committed May 7, 2024
1 parent 17bebb0 commit 94f193d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/components/dialog/base-floating-dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ export default function BaseFloatingDialog({ title, dialogObject, dataKey, dataL
TransitionComponent={Transition}
disableEnforceFocus
style={{ pointerEvents: 'none' }}
PaperProps={{ sx: { width: 750, height: 510, pointerEvents: 'auto'} }}
sx={{ width: 750, height: 510, '.MuiBackdrop-root': { backgroundColor: 'transparent' }}}
PaperProps={{ sx: { width: 625, height: 510, pointerEvents: 'auto'} }}
sx={{ width: 625, height: 510, '.MuiBackdrop-root': { backgroundColor: 'transparent' }}}
>
<DialogTitle sx={{cursor: 'move', backgroundColor: 'lightblue', textAlign: 'center', fontSize: 14, height: 35, m: 0, p: 1 }} id="draggable-dialog-title"> { title } </DialogTitle>

<DialogContent sx={{backgroundColor: 'white', fontSize: 14, height: 375 }}>{ dialogObject }</DialogContent>
<DialogContent sx={{backgroundColor: 'white', fontSize: 14, m: 0, width: 500, height: 375 }}>{ dialogObject }</DialogContent>

<DialogActions sx={{backgroundColor: 'lightgray', height: 35, m: 0, p: 1}}><Button style={{fontSize: 14}} autoFocus onClick={handleClose}> Close </Button></DialogActions>
</Dialog>
Expand Down
2 changes: 1 addition & 1 deletion src/components/map/map.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const Map = () => {
zoom={5}
zoomControl={false}
scrollWheelZoom={true}
ref={setMap}
whenCreated={setMap}
style={{ height: '100vh', width:'100wh' }}>
{ darkMode.enabled
? <TileLayer url={ `https://api.mapbox.com/styles/v1/mvvatson/clvu3inqs05v901qlabcfhxsr/tiles/256/{z}/{x}/{y}@2x?access_token=${ process.env.REACT_APP_MAPBOX_TOKEN }` } />
Expand Down

0 comments on commit 94f193d

Please sign in to comment.