mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-18 23:19:39 +02:00
Change tabs again
This commit is contained in:
@@ -8,7 +8,7 @@ interface Props {
|
||||
|
||||
export function ResponseHeaders({ headers }: Props) {
|
||||
return (
|
||||
<dl className="font-mono text-xs table-fixed w-full">
|
||||
<dl className="text-xs w-full font-mono">
|
||||
{headers.map((h, i) => {
|
||||
return (
|
||||
<HStack
|
||||
@@ -17,7 +17,7 @@ export function ResponseHeaders({ headers }: Props) {
|
||||
className={classnames(i > 0 && 'border-t border-highlightSecondary', 'py-1')}
|
||||
>
|
||||
<dd className="w-1/3 text-violet-600 select-text cursor-text">{h.name}</dd>
|
||||
<dt className="w-2/3 text-blue-600 select-text cursor-text break-all">{h.value}</dt>
|
||||
<dt className="w-2/3 select-text cursor-text break-all">{h.value}</dt>
|
||||
</HStack>
|
||||
);
|
||||
})}
|
||||
|
||||
Reference in New Issue
Block a user