Skip to content

Commit 247efad

Browse files
authored
Merge pull request #444 from hookdeck/fix/retry-button-padding
fix: remove top/bottom retry button padding in events table
2 parents 9ad180b + 7a06f87 commit 247efad

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

examples/demos/nodejs/src/migrate.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ main()
8888
process.exit(0);
8989
})
9090
.catch((error) => {
91+
console.error("Migration failed:", error.message);
92+
9193
askQuestion("Press 'e' and Enter to see the full error details: ").then(
9294
(answer) => {
9395
if (answer === "e") {

internal/portal/src/scenes/Destination/Events/Events.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@
4141

4242
&__body-cell > * {
4343
padding: var(--spacing-3) var(--spacing-4);
44+
45+
.button__minimal {
46+
padding-top: 0;
47+
padding-bottom: 0;
48+
}
4449
}
4550

4651
&__footer {

0 commit comments

Comments
 (0)