1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-26 20:39:08 +01:00
metamask-extension/ui/components/app/permission-page-container/index.scss
Olaf Tomalka 90b656bd66
Added SiteOrigin and PermissionList components (#12832)
* Changed back button to the one in design

* PermissionConnect now uses Chip component

* Added SiteOrigin widget

* WIP

* Added new permission list

* Fix linting errors

* Removed unused messages

* Removed more unused messages

* Make SiteOrigin bigger

* Fix lint

* Code Review fixes

* Fix SiteOrigin overflowing

* Add stories

* Fix lint

* Added useMemo to constant

* Fix Chip's max-content overflowing SiteOrigin

* Fix code review issues

Co-authored-by: Olaf Tomalka <olaftomalka@Olafs-MacBook-Pro-2.local>
2021-12-02 18:22:18 +01:00

140 lines
2.1 KiB
SCSS

.permission-approval-container {
&.page-container {
display: flex;
border: none;
box-shadow: none;
width: 100%;
margin-top: 2px;
height: 100%;
flex-direction: column;
justify-content: space-between;
}
@media screen and (min-width: $break-large) {
width: 426px;
flex: 1;
&__footers {
display: flex;
flex-direction: column-reverse;
flex: 1;
padding-bottom: 20px;
justify-content: space-between;
}
}
&__header {
display: flex;
flex-direction: column;
align-items: flex-end;
border-bottom: 1px solid $geyser;
padding: 9px;
}
&__title {
@include H4;
text-align: center;
margin-top: 32px;
width: 100%;
}
&__content {
display: flex;
overflow-y: auto;
flex-direction: column;
color: #7c808e;
padding-left: 24px;
padding-right: 24px;
a,
a:hover {
color: $dodger-blue;
}
&__requested {
text-align: left;
}
&__revoke-note {
margin-top: 60px;
}
&__permission {
display: flex;
align-items: center;
label {
@include H6;
margin-left: 16px;
color: $Black-100;
}
}
}
& &__checkbox {
font-size: 1.4rem;
margin: 0;
}
&__content-container {
display: flex;
flex-direction: column;
align-items: center;
}
&__permissions-header {
@include H6;
color: #6a737d;
}
&__permissions-container {
display: flex;
flex-direction: column;
margin-top: 38px;
}
.page-container__footer {
align-items: center;
margin-top: 12px;
@media screen and (min-width: $break-large) {
border-top: none;
}
footer {
width: 100%;
justify-content: space-between;
button {
width: 124px;
}
}
}
@media screen and (max-width: $break-small) {
&__title {
position: initial;
}
&__content-approval-visual {
margin-top: 16px;
}
.page-container__footer header {
padding: 0;
}
}
&__tooltip-body {
display: flex;
flex-direction: column;
}
&__bold-title-elements {
font-weight: bold;
}
}