From 66172a69ba646fe87d9c47340739b872dfd0d22d Mon Sep 17 00:00:00 2001 From: popovspiridon99 Date: Wed, 1 Oct 2025 12:21:48 +0900 Subject: [PATCH] MapStatusbar styling --- client/src/components/map/MapStatusbar/MapStatusbar.tsx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/client/src/components/map/MapStatusbar/MapStatusbar.tsx b/client/src/components/map/MapStatusbar/MapStatusbar.tsx index 299a008..fae4eaa 100644 --- a/client/src/components/map/MapStatusbar/MapStatusbar.tsx +++ b/client/src/components/map/MapStatusbar/MapStatusbar.tsx @@ -1,20 +1,17 @@ -import { CSSProperties } from 'react' import { useMapStore } from '../../../store/map'; import { Divider, Text } from '@fluentui/react-components'; interface IMapStatusbarProps { - mapControlsStyle: CSSProperties; map_id: string; } const MapStatusbar = ({ - mapControlsStyle, map_id }: IMapStatusbarProps) => { const { currentCoordinate, currentX, currentY, currentZ, statusText } = useMapStore().id[map_id] return ( -
+
x: {currentCoordinate?.[0]} @@ -37,7 +34,7 @@ const MapStatusbar = ({ Y={currentY} - + {statusText}