1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 02:10:12 +01:00
metamask-extension/ui/pages/permissions-connect/index.scss
Guillaume Roux d6f58bceb0
[FLASK] snaps-monorepo@0.31.0 (#18142)
* allow SnapController to call `ApprovalController:updateRequestState` action

* combine popups

* show only autorship pill on result

* lint

* update `snaps-monorepo@0.31.0` and regen policies

* dedupe deps and fix fencing

* fix update button text

* fix fencing

* Update a bunch of e2es

* address requested changes

* update policy

* bump key-tree

* fix lint

* Update RPC E2E

* fix locales

* Remove wrong instance of window handle polling

* design changes and address pr comments

* remove unused imports

* fix lint

* fix fencing

* remove unused locales

* fence things

* re-add redirection

* bump test-snaps version

* Fix update e2e

* fix redirecting logic and address requested changes

* force update metamask state on approved

* move force update

---------

Co-authored-by: Frederik Bolding <frederik.bolding@gmail.com>
2023-03-17 12:00:05 +01:00

46 lines
839 B
SCSS

@import 'choose-account/index';
@import 'flask/snap-install/index';
@import 'flask/snap-update/index';
@import 'flask/snap-result/index';
@import 'redirect/index';
.permissions-connect {
width: 100%;
height: 100%;
position: relative;
background: var(--color-background-default);
display: flex;
flex-direction: column;
@include screen-sm-min {
.page-container {
max-height: none;
min-height: auto;
}
}
&__top-bar {
display: grid;
grid-template-columns: 1fr 1fr;
padding: 16px 16px 0 16px;
align-items: center;
}
&__back {
@include H7;
color: var(--color-icon-default);
font-weight: bold;
cursor: pointer;
}
&__page-count {
@include H7;
color: var(--color-text-default);
grid-column: 2;
justify-self: flex-end;
font-weight: bold;
}
}