From 729654f5b293dfcf32b87d692fce028218afcc36 Mon Sep 17 00:00:00 2001 From: advplyr Date: Sat, 30 Oct 2021 18:50:49 -0500 Subject: [PATCH] Add: Experimental list view #149 --- client/assets/app.css | 3 + client/components/app/BookList.vue | 127 ++++++++++++ client/components/app/BookListRow.vue | 184 ++++++++++++++++++ client/components/app/BookShelf.vue | 95 +++++---- client/components/app/BookshelfListRow.vue | 216 --------------------- client/components/ui/Checkbox.vue | 15 +- client/package.json | 2 +- client/tailwind.config.js | 18 ++ package.json | 2 +- 9 files changed, 393 insertions(+), 269 deletions(-) create mode 100644 client/components/app/BookList.vue create mode 100644 client/components/app/BookListRow.vue delete mode 100644 client/components/app/BookshelfListRow.vue diff --git a/client/assets/app.css b/client/assets/app.css index dc020817..7c7634f1 100644 --- a/client/assets/app.css +++ b/client/assets/app.css @@ -19,6 +19,9 @@ ::-webkit-scrollbar { width: 8px; } +::-webkit-scrollbar:horizontal { + height: 8px; +} /* ::-webkit-scrollbar:horizontal { */ /* height: 16px; */ /* height: 24px; diff --git a/client/components/app/BookList.vue b/client/components/app/BookList.vue new file mode 100644 index 00000000..450fda36 --- /dev/null +++ b/client/components/app/BookList.vue @@ -0,0 +1,127 @@ + + + + + \ No newline at end of file diff --git a/client/components/app/BookListRow.vue b/client/components/app/BookListRow.vue new file mode 100644 index 00000000..315ee073 --- /dev/null +++ b/client/components/app/BookListRow.vue @@ -0,0 +1,184 @@ + + + \ No newline at end of file diff --git a/client/components/app/BookShelf.vue b/client/components/app/BookShelf.vue index 241701b0..3202ad83 100644 --- a/client/components/app/BookShelf.vue +++ b/client/components/app/BookShelf.vue @@ -1,57 +1,56 @@