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/menu.scss

59 lines
921 B
SCSS
Raw Normal View History

2017-10-13 08:10:58 +02:00
.menu {
border-radius: 4px;
background: rgba($black, .8);
box-shadow: rgba($black, .15) 0 2px 2px 2px;
min-width: 150px;
color: $white;
&__item {
padding: 18px;
display: flex;
flex-flow: row nowrap;
align-items: center;
2017-10-16 07:28:25 +02:00
position: relative;
2017-11-14 17:04:55 +01:00
z-index: 201;
2017-10-13 08:10:58 +02:00
2017-10-18 07:36:53 +02:00
@media screen and (max-width: 575px) {
padding: 14px;
}
2017-10-13 08:10:58 +02:00
&--clickable {
cursor: pointer;
&:hover {
background-color: rgba($white, .05);
}
&:active {
background-color: rgba($white, .1);
}
}
&__icon {
height: 16px;
width: 16px;
margin-right: 14px;
}
&__text {
font-size: 16px;
line-height: 21px;
}
}
&__divider {
background-color: $scorpion;
width: 100%;
height: 1px;
}
2017-10-16 07:28:25 +02:00
&__close-area {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 100;
}
2017-10-13 08:10:58 +02:00
}