diff --git a/client/assets/app.css b/client/assets/app.css index 6decbb29..9a406d09 100644 --- a/client/assets/app.css +++ b/client/assets/app.css @@ -23,10 +23,19 @@ background-image: linear-gradient(to right bottom, #2e2e2e, #303030, #313131, #333333, #353535, #343434, #323232, #313131, #2c2c2c, #282828, #232323, #1f1f1f); } +.bookshelf-row { + /* Sidebar width + scrollbar width */ + width: calc(100vw - 88px); +} + @media (max-width: 768px) { #bookshelf { height: calc(100% - 80px); } + + .bookshelf-row { + width: 100vw; + } } #page-wrapper { diff --git a/client/components/app/BookShelfCategorized.vue b/client/components/app/BookShelfCategorized.vue index b7ac317b..04156442 100644 --- a/client/components/app/BookShelfCategorized.vue +++ b/client/components/app/BookShelfCategorized.vue @@ -1,9 +1,9 @@