1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-24 11:01:41 +01:00
metamask-extension/ui/components/app/permissions-connect-permission-list/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

23 lines
406 B
SCSS

.permissions-connect-permission-list {
.permission {
@include H6;
width: 100%;
padding-bottom: 16px;
border-bottom: 1px solid $Grey-100;
display: flex;
flex-direction: row;
align-items: center;
color: $Black-100;
i {
display: block;
padding: 16px;
min-width: 16px;
min-height: 16px;
color: $Grey-500;
font-size: 1rem;
}
}
}