99 lines
2.6 KiB
SCSS
Vendored

.project-dialog {
display: flex;
flex-direction: column;
background-color: #ffffff;
border-left: 1px solid #f4f5f5;
z-index: 1;
position: relative;
.project-dialog-wrapper {
.dialog-user {
margin-top: 36px;
padding: 0 32px;
.member-head {
display: flex;
align-items: center;
.member-title {
flex: 1;
font-size: 18px;
font-weight: 600;
> span {
padding-left: 6px;
color: $primary-color;
}
}
.member-view-all {
color: #999;
font-size: 13px;
cursor: pointer;
&:hover {
color: #777;
}
}
}
.member-list {
display: flex;
align-items: center;
margin-top: 14px;
overflow: auto;
&::-webkit-scrollbar {
display: none;
}
> li {
position: relative;
list-style: none;
margin-right: 14px;
margin-bottom: 8px;
}
&.member-all {
display: block;
> li {
display: inline-block;
}
}
}
}
.dialog-footer {
.dialog-back {
display: none;
}
}
}
}
@media (max-width: 768px) {
.project-dialog {
.project-dialog-wrapper {
.dialog-user {
margin-top: 24px;
padding: 0 20px;
}
.dialog-title {
padding: 0 20px;
}
.dialog-scroller {
padding: 0 20px;
}
.dialog-footer {
position: relative;
.dialog-back {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 64px;
z-index: 1;
font-size: 26px;
display: flex;
align-items: center;
justify-content: center;
}
.dialog-input {
width: calc(100% - 44px);
}
}
}
}
}