update divider margin

This commit is contained in:
lcq 2022-01-02 09:09:45 +08:00
parent c8f183fbff
commit ea9097b124
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ app.controller('tagsCtr', ['$scope', '$filter', '$state', '$window', '$statePara
}, 10);
} else if ($scope.showMode == 'item' && bookmarks.length > $scope.pageSize / 2 && $scope.currentTagId == -1) {
$timeout(() => {
$("#" + bookmarks[bookmarks.length / 2 - 1].id).after(`<div class="ui divider" style="width:100%;margin:0px 15px"></div>`);
$("#" + bookmarks[bookmarks.length / 2 - 1].id).after(`<div class="ui divider" style="width:100%;margin:0px 15px -1px 15px"></div>`);
}, 100);
}