Skip to content

Commit

Permalink
improve keybind generator design
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikks committed Dec 2, 2023
1 parent 5100e3c commit 6be6811
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
.max-width {
max-width: 1200px;
margin: 0 auto;
padding: 0 16px;
width: 100%;
}

Expand All @@ -28,11 +29,7 @@ mat-toolbar {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin: 0 16px;

button {
margin-bottom: 8px;
}
gap: 8px;
}

.auth-token-row {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export class KeybindGeneratorComponent {
next: newToken => this.authToken.set(newToken),
error: error => {
console.error(error);
this.snackBar.open('Failed to generate new auth token.', 'Damn');
this.snackBar.open('Failed to generate new auth token.', 'Damn', { duration: undefined });
},
});
}
Expand Down

0 comments on commit 6be6811

Please sign in to comment.