.app-todo-list {
    width: 100%;
    height: 100%;

    .title {
        color: #2b85e4;
        font-weight: 500;
        cursor: pointer;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .app-todo-list__search {
        width: 400px;
        padding: 8px 0;
        margin: 0 8px 0 auto;
    }
    .el-table {
        height: calc(100% - 98px);
        width: 100%;
        overflow: auto;
    }
    .app-todo-list__pagination {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 8px;
    }
}