Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ const DDButton: React.FC<DropDownButtonProps> = props => {
boxShadow: '0 6px 12px rgb(0 0 0 / 18%);',
padding: '5px 0',
margin: '2px 0 0',
zIndex: 100
}}
align="start"
>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@import '../Common.module';

.headerInputWidth {
width: 300px;
width: 320px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ const HeadersEditor = (props: HeaderEditorProps) => {
.filter(h => !!h.name)
.map(header => (
<tr className="">
<td className="px-3 py-3 whitespace-nowrap font-medium">
<td className="px-md py-sm whitespace-nowrap font-medium">
{header.name}
</td>
<td className="px-3 py-3 whitespace-nowrap text-gray-600">
<td className="px-md py-sm whitespace-nowrap text-gray-600">
{header.type}
</td>
<td className="px-3 py-3 whitespace-nowrap text-gray-600">
<td className="px-md py-sm whitespace-nowrap text-gray-600">
{header.value}
</td>
</tr>
Expand All @@ -74,7 +74,7 @@ const HeadersEditor = (props: HeaderEditorProps) => {
);

return (
<div className="mb-lg w-6/12">
<div className="mb-lg w-9/12">
<h2 className="text-lg font-semibold mb-xs flex items-center">Headers</h2>
<p className="text-sm mb-sm text-gray-600">
Headers Hasura will send to the webhook with the POST request.
Expand Down