35 lines
639 B
CSS
35 lines
639 B
CSS
|
.list-proj-agent {
|
||
|
width: 100%;
|
||
|
padding: 15px 0;
|
||
|
}
|
||
|
|
||
|
.list-proj-agent .top {
|
||
|
padding: 0 15px 15px 15px;
|
||
|
display: flex;
|
||
|
justify-content: right;
|
||
|
border-bottom: 1px solid var(--color-border);
|
||
|
}
|
||
|
|
||
|
.list-proj-agent .body {
|
||
|
width: unset;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.list-proj-agent .list {
|
||
|
padding: 15px;
|
||
|
overflow: auto;
|
||
|
}
|
||
|
|
||
|
.list-proj-agent .body .card-proj-agent {
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
.list-proj-agent .body .card-proj-agent:last-child {
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
|
||
|
.list-proj-agent .body .page {
|
||
|
border-top: 1px solid var(--color-border);
|
||
|
padding-top: 15px;
|
||
|
display: flex;
|
||
|
justify-content: right;
|
||
|
}
|