1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/app/css/itcss/components/account-menu.scss

58 lines
984 B
SCSS
Raw Normal View History

2017-10-13 08:10:58 +02:00
.account-menu {
position: fixed;
z-index: 100;
top: 58px;
width: 310px;
@media screen and (max-width: 575px) {
right: calc((100vw - 100%) / 2);
}
@media screen and (min-width: 576px) {
right: calc((100vw - 85vw) / 2);
}
@media screen and (min-width: 769px) {
right: calc((100vw - 80vw) / 2);
}
@media screen and (min-width: 1281px) {
right: calc((100vw - 65vw) / 2);
}
2017-10-16 07:28:25 +02:00
&__icon {
cursor: pointer;
}
2017-10-13 08:10:58 +02:00
&__header {
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
align-items: center;
}
&__logout-button {
border: 1px solid $dusty-gray;
background-color: transparent;
color: $white;
border-radius: 4px;
font-size: 12px;
line-height: 23px;
padding: 0 24px;
}
img {
width: 16px;
height: 16px;
}
2017-10-16 07:28:25 +02:00
&__accounts {
display: flex;
flex-flow: column nowrap;
overflow-y: auto;
height: 272px;
position: relative;
z-index: 200;
}
2017-10-13 08:10:58 +02:00
}