Skip to content

Commit

Permalink
Merge branch 'master' of ssh://github.com/buildbuddy-io/buildbuddy
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerwilliams committed Nov 21, 2020
2 parents 2d5d7d5 + deb2e3f commit 67b9db7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/capabilities/capabilities.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class Capabilities {
this.invocationSharing = true;
this.compareInvocations = true;
this.deleteInvocation = true;
this.manageApiKeys = window.localStorage["manage_api_keys"] === "true";
this.manageApiKeys = true;
this.paths = new Set(paths);
window.gtag("set", {
app_name: this.name,
Expand Down
5 changes: 2 additions & 3 deletions app/errors/errors.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
z-index: 9000;

left: 50%;
transform: translateX(-50%);
margin-top: 32px;

background: #ffcdd2;
Expand All @@ -18,13 +17,13 @@
.error-banner.hidden {
pointer-events: none;
opacity: 0;
transform: translateY(-16px);
transform: translateX(-50%) translateY(-16px);
transition: 128ms ease-in;
}

.error-banner.visible {
opacity: 1;
transform: none;
transform: translateX(-50%);
transition: 128ms ease-out;
}

Expand Down

0 comments on commit 67b9db7

Please sign in to comment.