diff --git a/frontend/src/components/RoomCard/RoomCard.tsx b/frontend/src/components/RoomCard/RoomCard.tsx index e075cd0..22647ca 100644 --- a/frontend/src/components/RoomCard/RoomCard.tsx +++ b/frontend/src/components/RoomCard/RoomCard.tsx @@ -173,21 +173,37 @@ const RoomCardTitleWithDescription = (props: { }) => { return ( - - {getName(props.room)} - - - {getNumberWithOrdinalSuffix(parseInt(getFloor(props.room)))}{' '} - floor - + + + {getName(props.room)} + + + {/* Wrap the h4 in a Box */} + + {' '} + {/* You can adjust margin as needed */} + + {getNumberWithOrdinalSuffix(parseInt(getFloor(props.room)))}{' '} + floor + + ); };