1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00
metamask-extension/ui/components/app/menu-bar/index.scss

43 lines
800 B
SCSS
Raw Normal View History

2018-07-30 19:42:09 +02:00
.menu-bar {
display: grid;
grid-template-columns: 30% minmax(30%, 1fr) 30%;
column-gap: 5px;
padding: 0 8px;
border-bottom: 1px solid var(--color-border-muted);
height: 64px;
2018-07-30 19:42:09 +02:00
.menu-bar__account-options {
background: none;
font-size: inherit;
padding: 0 8px 0 5px;
place-self: center end;
color: var(--color-text-default);
}
///: BEGIN:ONLY_INCLUDE_IN(build-mmi)
&__custody-logo {
@media screen and (max-width: $break-small) {
display: none;
}
&--icon {
height: 35px;
margin-left: 10px;
}
}
///: END:ONLY_INCLUDE_IN
.selected-account {
grid-column: 2 / span 1;
place-self: center stretch;
2018-07-30 19:42:09 +02:00
}
}
.account-options-menu {
&__explorer-origin {
@include H7;
color: var(--color-text-alternative);
}
}