Skip to content

Commit

Permalink
fix: update css file name and add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
aswin-s committed Nov 1, 2023
1 parent f0e2d98 commit 0ce7788
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/MapView/MapView.web.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import {View} from 'react-native';
import * as StyleUtils from '@styles/StyleUtils';
import themeColors from '@styles/themes/default';
import CONST from '@src/CONST';
import './css-fix.css';
import Direction from './Direction';
import './mapbox.css';
import {MapViewHandle, MapViewProps} from './MapViewTypes';
import responder from './responder';
import utils from './utils';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/* Fixes an issue with Webkit where map canvas loses zIndex order and draws above attribution controls
https://github.com/Expensify/App/issues/27800
*/
.mapboxgl-ctrl-bottom-left {
-webkit-transform: translate3d(0, 0, 1px);
transform: translate3d(0, 0, 1px);
Expand Down

0 comments on commit 0ce7788

Please sign in to comment.