2020-05-29 19:31:19 +05:00
|
|
|
:global(#app) {
|
|
|
|
|
.addUser {
|
|
|
|
|
background: rgba(0, 0, 0, 0.24);
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
color: #fff;
|
|
|
|
|
line-height: 36px;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
transition: all 0.1s ease 0s;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
width: 36px;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background: rgba(0, 0, 0, 0.32);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header {
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
margin: 0 -1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.name {
|
|
|
|
|
background: transparent;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
color: #fff;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
font-size: 32px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
line-height: 36px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: 0 -4px 0 0;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
line-height: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.users {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wrapper {
|
2020-06-04 21:15:22 +05:00
|
|
|
background: rgba(0, 0, 0, 0.16);
|
2020-05-29 19:31:19 +05:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100%;
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
}
|
|
|
|
|
}
|