You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
728 B
54 lines
728 B
.message{
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 28px;
|
|
transition: all 0.26s ease;
|
|
background: #00b0f0;
|
|
color: white;
|
|
z-index: 100;
|
|
font-size: 14px;
|
|
}
|
|
.message.hidden{
|
|
transform: translateY(-32px);
|
|
}
|
|
|
|
.account{
|
|
display: flex;
|
|
padding: 12px;
|
|
margin-bottom: 1px;
|
|
background: white;
|
|
align-items: center;
|
|
}
|
|
|
|
.avatar{
|
|
border-radius: 50%;
|
|
height: 40px;
|
|
width: 40px;
|
|
margin: 0 12px 0 4px;
|
|
}
|
|
|
|
.info{
|
|
flex: auto;
|
|
}
|
|
.login{
|
|
font-size: 12px;
|
|
color: dimgray;
|
|
}
|
|
|
|
.addAccount{
|
|
margin-top: 24px;
|
|
}
|
|
.nav-back{
|
|
margin-top: 8px;
|
|
}
|
|
.empty{
|
|
text-align: center;
|
|
color: dimgray;
|
|
font-size: 13px;
|
|
margin: 8px 0;
|
|
} |