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

133 lines
2.2 KiB
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) {
2017-10-19 23:08:52 +02:00
right: calc(((100vw - 100%) / 2) + 8px);
2017-10-13 08:10:58 +02:00
}
@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 {
margin-left: 20px;
2017-10-16 07:28:25 +02:00
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;
2017-10-18 07:36:53 +02:00
font-weight: 200;
2017-10-13 08:10:58 +02:00
}
img {
width: 16px;
height: 16px;
}
2017-10-16 07:28:25 +02:00
&__accounts {
display: flex;
flex-flow: column nowrap;
overflow-y: auto;
2017-10-18 07:36:53 +02:00
max-height: 240px;
2017-10-16 07:28:25 +02:00
position: relative;
z-index: 200;
2017-10-18 07:36:53 +02:00
&::-webkit-scrollbar {
display: none;
}
@media screen and (max-width: 575px) {
max-height: 215px;
}
.keyring-label {
margin-top: 5px;
2017-10-24 08:11:47 +02:00
background-color: $black;
color: $dusty-gray;
2017-10-18 07:36:53 +02:00
}
}
&__account {
display: flex;
flex-flow: row nowrap;
padding: 16px 14px;
flex: 0 0 auto;
@media screen and (max-width: 575px) {
padding: 12px 14px;
}
}
&__account-info {
flex: 1 0 auto;
display: flex;
flex-flow: column nowrap;
padding-top: 4px;
}
&__check-mark {
width: 14px;
2017-10-24 09:13:49 +02:00
margin-right: 12px;
2017-10-18 07:36:53 +02:00
flex: 0 0 auto;
}
2017-10-24 09:13:49 +02:00
&__check-mark-icon {
background-image: url("images/check-white.svg");
height: 18px;
width: 18px;
background-repeat: no-repeat;
background-position: center;
background-size: contain;
margin: 3px 0;
}
2017-10-18 07:36:53 +02:00
.identicon {
margin: 0 12px 0 0;
flex: 0 0 auto;
}
&__name {
color: $white;
font-size: 18px;
font-weight: 200;
line-height: 16px;
}
&__balance {
color: $dusty-gray;
font-size: 14px;
line-height: 19px;
}
&__action {
font-size: 16px;
line-height: 18px;
font-weight: 200;
cursor: pointer;
2017-10-16 07:28:25 +02:00
}
2017-10-13 08:10:58 +02:00
}