mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
132 lines
2.2 KiB
SCSS
132 lines
2.2 KiB
SCSS
.view-snap {
|
|
padding: 12px 18px;
|
|
|
|
@include screen-sm-min {
|
|
padding: 12px;
|
|
}
|
|
|
|
&__subheader {
|
|
padding: 16px 4px;
|
|
border-bottom: 1px solid var(--color-border-muted);
|
|
margin-inline-end: 24px;
|
|
height: 72px;
|
|
align-items: center;
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
|
|
@include screen-sm-max {
|
|
margin-inline-end: 0;
|
|
padding: 0 0 16px;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 8px;
|
|
height: max-content;
|
|
}
|
|
}
|
|
|
|
&__install-details {
|
|
border-bottom: 1px solid var(--color-border-muted);
|
|
margin-inline-end: 24px;
|
|
|
|
@include screen-sm-max {
|
|
margin-inline-end: 0;
|
|
}
|
|
}
|
|
|
|
&__version {
|
|
font-family: monospace;
|
|
}
|
|
|
|
&__title {
|
|
@include screen-sm-max {
|
|
padding-bottom: 16px;
|
|
}
|
|
}
|
|
|
|
&__pill-toggle-container {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-grow: 1;
|
|
|
|
@include screen-sm-max {
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
|
|
&__pill-container {
|
|
@include screen-sm-max {
|
|
padding-left: 0;
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
&__toggle-container {
|
|
margin-left: auto;
|
|
|
|
@include screen-sm-max {
|
|
padding-left: 0;
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
&__toggle-button {
|
|
margin-right: -12px;
|
|
}
|
|
|
|
&__content-container {
|
|
@include screen-sm-max {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
&__section {
|
|
flex: 1;
|
|
min-width: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px solid var(--color-border-muted);
|
|
padding-bottom: 16px;
|
|
margin-bottom: 16px;
|
|
|
|
@include screen-sm-max {
|
|
height: initial;
|
|
padding: 5px 0 16px;
|
|
}
|
|
|
|
.connected-sites-list__content-row {
|
|
border-top: none;
|
|
border-bottom: 1px solid var(--color-border-muted);
|
|
|
|
&:last-child {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
&__permission-list {
|
|
padding-bottom: 0;
|
|
|
|
.permission {
|
|
padding-top: 16px;
|
|
|
|
&:last-child {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__remove-button {
|
|
max-width: 175px;
|
|
|
|
@include screen-sm-max {
|
|
align-self: center;
|
|
}
|
|
}
|
|
}
|