mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
44 lines
709 B
SCSS
44 lines
709 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-icon {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
&__subject-name {
|
|
max-width: 215px;
|
|
margin-left: 6px;
|
|
}
|
|
}
|