mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
634cf70a71
* extend and reuse SiteOrigin component
40 lines
664 B
SCSS
40 lines
664 B
SCSS
.connected-sites-list {
|
|
&__content-rows {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
&__content-row {
|
|
display: flex;
|
|
width: 100%;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-top: 1px solid var(--color-border-muted);
|
|
padding: 16px 24px;
|
|
|
|
& &-link-button {
|
|
@include H7;
|
|
|
|
padding: 0;
|
|
width: auto;
|
|
padding-inline-start: 24px;
|
|
}
|
|
}
|
|
|
|
&__subject-info {
|
|
@include H7;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
min-width: 0;
|
|
}
|
|
|
|
&__subject-name {
|
|
max-width: 215px;
|
|
margin-left: 6px;
|
|
}
|
|
}
|