Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:MetaMask/metamask-extension into…
Browse files Browse the repository at this point in the history
… feat/preferences-controller-to-base-controller-v2
  • Loading branch information
kanthesha committed Oct 14, 2024
2 parents a8b0c53 + ca14e7b commit c7abe9b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/scripts/test-run-e2e-timeout-minutes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { filterE2eChangedFiles } from '../../test/e2e/changedFilesUtil';

const changedOrNewTests = filterE2eChangedFiles();

//15 minutes, plus 3 minutes for every changed file, up to a maximum of 30 minutes
const extraTime = Math.min(15 + changedOrNewTests.length * 3, 30);
// 20 minutes, plus 3 minutes for every changed file, up to a maximum of 30 minutes
const extraTime = Math.min(20 + changedOrNewTests.length * 3, 30);

console.log(extraTime);
18 changes: 18 additions & 0 deletions ui/components/app/snaps/snap-ui-renderer/index.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
@use "design-system";

.snap-ui-renderer {
$width-screen-sm-min: 85vw;
$width-screen-md-min: 80vw;
$width-screen-lg-min: 62vw;

&__content {
margin-bottom: 0 !important;
}
Expand Down Expand Up @@ -69,5 +75,17 @@

&__footer {
margin-top: auto;

@include design-system.screen-sm-min {
max-width: $width-screen-sm-min;
}

@include design-system.screen-md-min {
max-width: $width-screen-md-min;
}

@include design-system.screen-lg-min {
max-width: $width-screen-lg-min;
}
}
}

0 comments on commit c7abe9b

Please sign in to comment.