diff --git a/frontend/src/components/Alerts/AlertsListItem.tsx b/frontend/src/components/Alerts/AlertsListItem.tsx index 4d064d7c..04aa87e8 100644 --- a/frontend/src/components/Alerts/AlertsListItem.tsx +++ b/frontend/src/components/Alerts/AlertsListItem.tsx @@ -27,12 +27,14 @@ const StyledListHeading = styled(outline)` display: flex; justify-content: space-between; padding: 6px 5px 6px 5px; + border-radius: 3px 3px 0px 0px; ` const StyledListItem = styled(outline)` display: flex; flex-direction: column; align-items: left; row-gap: 10px; + border-radius: 0px 0px 3px 3px; ` const VerticalContent = styled.div` @@ -59,6 +61,14 @@ const Right = styled.div` display: flex; align-items: right; justify-content: right; + align-content: center; +` +const StyledButton = styled(Button)` + margin-top: 6px; + right: 30px; + position: absolute; + height: 30px; + width: 30px; ` interface AlertListInfo { @@ -111,13 +121,9 @@ export const AlertListItem = ({ children, dismissAlert }: AlertProps) => { return ( {children} - + + + ) } diff --git a/frontend/src/components/Pages/MissionPage/MapPosition/MissionMapView.tsx b/frontend/src/components/Pages/MissionPage/MapPosition/MissionMapView.tsx index a3c40266..c63322f9 100644 --- a/frontend/src/components/Pages/MissionPage/MapPosition/MissionMapView.tsx +++ b/frontend/src/components/Pages/MissionPage/MapPosition/MissionMapView.tsx @@ -130,7 +130,7 @@ export const MissionMapView = ({ mission }: MissionProps) => { return ( - {mission.map?.mapName} + {mission.map?.mapName} diff --git a/frontend/src/components/Pages/MissionPage/MissionHeader/MissionHeader.tsx b/frontend/src/components/Pages/MissionPage/MissionHeader/MissionHeader.tsx index 575cbea9..bd626d1c 100644 --- a/frontend/src/components/Pages/MissionPage/MissionHeader/MissionHeader.tsx +++ b/frontend/src/components/Pages/MissionPage/MissionHeader/MissionHeader.tsx @@ -25,7 +25,6 @@ const TitleSection = styled.div` display: flex; align-items: center; gap: 20px; - ` const InfoSection = styled.div` display: flex; diff --git a/frontend/src/components/Pages/MissionPage/TaskOverview/TaskTable.tsx b/frontend/src/components/Pages/MissionPage/TaskOverview/TaskTable.tsx index ca072147..325d0d22 100644 --- a/frontend/src/components/Pages/MissionPage/TaskOverview/TaskTable.tsx +++ b/frontend/src/components/Pages/MissionPage/TaskOverview/TaskTable.tsx @@ -5,7 +5,12 @@ import { useLanguageContext } from 'components/Contexts/LanguageContext' import { Task, TaskStatus } from 'models/Task' import { tokens } from '@equinor/eds-tokens' import { getColorsFromTaskStatus } from 'utils/MarkerStyles' -import { StyledTableBody, StyledTableCaption, StyledTableCaptionGray, StyledTableCell } from 'components/Styles/StyledComponents' +import { + StyledTableBody, + StyledTableCaption, + StyledTableCaptionGray, + StyledTableCell, +} from 'components/Styles/StyledComponents' const StyledTable = styled(Table)` display: block; @@ -36,7 +41,7 @@ export const TaskTable = ({ tasks }: { tasks: Task[] | undefined }) => { {TranslateText('Tasks')} - + # {TranslateText('Tag-ID')} diff --git a/frontend/src/utils/DeckMapView.tsx b/frontend/src/utils/DeckMapView.tsx index d9c61640..f999e6b4 100644 --- a/frontend/src/utils/DeckMapView.tsx +++ b/frontend/src/utils/DeckMapView.tsx @@ -125,7 +125,7 @@ export const DeckMapView = ({ deck, markedRobotPosition }: DeckProps) => { )} {!isLoading && ( - + {mapMetadata?.mapName ? mapMetadata.mapName : 'No map available'}