File tree Expand file tree Collapse file tree 5 files changed +4
-5
lines changed
packages/insomnia/src/ui/components Expand file tree Collapse file tree 5 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ export const MessageEventView = ({ event }: Props) => {
172172
173173 return (
174174 < div className = "flex h-full flex-col" >
175- < div className = "box-border flex h-8 flex-row border-b border-gray-300 " >
175+ < div className = "box-border flex h-8 flex-row items-center border-b border-(--hl-md) " >
176176 < Dropdown
177177 aria-label = "Websocket Preview Mode Dropdown"
178178 className = "p-2"
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ export const McpNotificationTab = ({ allEvents }: McpNotificationTabProps) => {
7373 < >
7474 < PanelResizeHandle className = { 'h-px w-full bg-(--hl-md)' } />
7575 < Panel minSize = { 10 } defaultSize = { 50 } >
76- < div className = "h-full flex-1 border-t border-(--hl-md) " >
76+ < div className = "h-full flex-1" >
7777 < McpEventView event = { selectedEvent } key = { selectedEvent . _id } />
7878 </ div >
7979 </ Panel >
Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ export const RunnerTestResultPane: FC<Props> = ({ result }) => {
5858 return (
5959 < div key = { key } data-testid = { key } className = "border-b border-dashed border-b-(--hl-md) pt-6 pb-6" >
6060 < div className = "mb-3 pl-3 leading-10 font-bold uppercase" > Iteration { i + 1 } </ div >
61- < div className = "border border-solid border-gray-600" />
6261 { resultByRequest }
6362 </ div >
6463 ) ;
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ export const MessageEventView: FC<Props<CurlMessageEvent | WebSocketMessageEvent
7575 const previewMode = ( 'previewMode' in activeRequestMeta && activeRequestMeta . previewMode ) || PREVIEW_MODE_SOURCE ;
7676 return (
7777 < div className = "flex h-full flex-col" >
78- < div className = "box-border flex h-8 flex-row border-b border-gray-300 p-2" >
78+ < div className = "box-border flex h-8 items-center border-b border-(--hl-sm) p-2" >
7979 < WebSocketPreviewModeDropdown
8080 download = { handleDownloadResponseBody }
8181 copyToClipboard = { handleCopyResponseToClipboard }
Original file line number Diff line number Diff line change @@ -395,7 +395,7 @@ const RealtimeActiveResponsePane: FC<RealtimeActiveResponsePaneProps & { readySt
395395 < >
396396 < PanelResizeHandle className = { 'h-px w-full bg-(--hl-md)' } />
397397 < Panel minSize = { 10 } defaultSize = { isMcpResponse ( response ) ? 85 : 60 } >
398- < div className = "h-full flex-1 border-t border-(--hl-md) " > { getEventView ( selectedEvent ) } </ div >
398+ < div className = "h-full flex-1" > { getEventView ( selectedEvent ) } </ div >
399399 </ Panel >
400400 </ >
401401 ) }
You can’t perform that action at this time.
0 commit comments