1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/components/app/menu-bar/index.scss
2021-04-28 14:53:59 -05:00

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;
}
}