mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
38 lines
721 B
SCSS
38 lines
721 B
SCSS
.menu-bar {
|
|
display: grid;
|
|
grid-template-columns: 30% minmax(30%, 1fr) 30%;
|
|
column-gap: 5px;
|
|
padding: 0 8px;
|
|
border-bottom: 1px solid $Grey-100;
|
|
height: 64px;
|
|
|
|
.menu-bar__account-options {
|
|
background: none;
|
|
font-size: inherit;
|
|
padding: 0 8px 0 5px;
|
|
place-self: center end;
|
|
}
|
|
|
|
.selected-account {
|
|
grid-column: 2 / span 1;
|
|
place-self: center stretch;
|
|
}
|
|
}
|
|
|
|
.account-options-menu {
|
|
&__connected-sites::before {
|
|
content: "";
|
|
background-image: url(/images/icons/connected-sites.svg);
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
padding: 8px;
|
|
}
|
|
|
|
&__explorer-origin {
|
|
@include H7;
|
|
|
|
color: $Grey-500;
|
|
}
|
|
}
|