* feat: add pagination to document table * feat: fetch document list by page * feat: poll the document list * feat: upload document * feat: save the selected parser to the backend on the upload file page
19 lines
351 B
Plaintext
19 lines
351 B
Plaintext
.container {
|
|
display: flex;
|
|
height: 100%;
|
|
.contentWrapper {
|
|
flex: 1;
|
|
overflow-x: auto;
|
|
height: 100%;
|
|
background-color: rgba(247, 248, 250, 1);
|
|
padding: 16px 20px 28px 40px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.content {
|
|
background-color: white;
|
|
margin-top: 16px;
|
|
flex: 1;
|
|
}
|
|
}
|