Merge pull request #1723 from bechi/temp
first animation on wallet selection
This commit is contained in:
commit
fbfbeaa54c
2 changed files with 22 additions and 12 deletions
|
|
@ -1086,12 +1086,28 @@ button.gray:focus,
|
|||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.side-nav.wallets {
|
||||
background-color: #213140 ;
|
||||
.side-nav.wallets li {
|
||||
padding: 1.2rem 0.7rem;
|
||||
}
|
||||
|
||||
.side-nav.wallets {
|
||||
z-index: 9999;
|
||||
background-color: #213140 ;
|
||||
border-bottom: 1px solid #3A4E61;
|
||||
overflow-y: auto;
|
||||
height: 160px;
|
||||
position: absolute;
|
||||
height: 0%;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
-webkit-transition: height 250ms ease-in;
|
||||
-moz-transition: height 250ms ease-in;
|
||||
-o-transition: height 250ms ease-in;
|
||||
-ms-transition: height 250ms ease-in;
|
||||
transition: height 250ms ease-in;
|
||||
}
|
||||
|
||||
.side-nav.wallets.open {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.side-nav.wallets.medium {
|
||||
|
|
@ -1371,12 +1387,6 @@ a.text-warning:hover {color: #FD7262;}
|
|||
}
|
||||
}
|
||||
|
||||
@media (max-height: 590px) {
|
||||
.side-nav.wallets {
|
||||
height: 180px !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-height: 380px) {
|
||||
.sidebar-footer {
|
||||
display: none;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue