@ -15,5 +15,5 @@ export const collapse = trigger('collapse', [
overflow: 'hidden',
}),
),
transition('open <=> close', animate('{{duration}}ms')),
transition(`open <=> close`, animate('{{duration}}ms'), { params: { duration: '350' } }),
]);
@ -150,6 +150,10 @@ export default `
margin-left: 10px !important;
}
.ui-widget-overlay {
z-index: 1000;
/* <animations */
.fade-in-top {
@ -12,7 +12,7 @@ export class BooksService {
get(): Observable<Books.Response> {
return this.restService.request<void, Books.Response>({
method: 'GET',
url: '/api/app/book',
url: '/api/app/book?MaxResultCount=100',
});