Skip to content

Commit

Permalink
Fix series page scrollbar, add bottom padding
Browse files Browse the repository at this point in the history
  • Loading branch information
glorenzen committed Feb 17, 2025
1 parent 5e0a123 commit fa66577
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions client/pages/library/_library/series/_id.vue
Original file line number Diff line number Diff line change
@@ -1,24 +1,26 @@
<template>
<div id="page-wrapper" class="page" :class="streamLibraryItem ? 'streaming' : ''">
<app-book-shelf-toolbar id="series-toolbar" :selected-series="series" />
<div class="max-w-6xl mx-auto">
<div class="px-4e sm:px-8e">
<div class="flex items-center my-8">
<h1 class="text-2xl">{{ series.name }}</h1>
<div class="h-full overflow-y-auto pb-[100px]">
<div class="max-w-6xl mx-auto">
<div class="px-4e sm:px-8e">
<div class="flex items-center my-8">
<h1 class="text-2xl">{{ series.name }}</h1>

<button class="w-8 h-8 rounded-full flex items-center justify-center mx-4 cursor-pointer text-gray-300 hover:text-warning transform hover:scale-125 duration-100" @click="showEditSeries">
<span class="material-symbols text-base">edit</span>
</button>
<button class="w-8 h-8 rounded-full flex items-center justify-center mx-4 cursor-pointer text-gray-300 hover:text-warning transform hover:scale-125 duration-100" @click="showEditSeries">
<span class="material-symbols text-base">edit</span>
</button>
</div>
<div class="mb-6">
<h2 class="font-semibold">
{{ $strings.LabelDescription }}
</h2>
<div>{{ series.description }}</div>
</div>
</div>
<div class="mb-6">
<h2 class="font-semibold">
{{ $strings.LabelDescription }}
</h2>
<div>{{ series.description }}</div>
</div>
</div>

<app-lazy-bookshelf page="series-books" :series-id="seriesId" />
<app-lazy-bookshelf page="series-books" :series-id="seriesId" />
</div>
</div>

<modals-edit-series-modal v-model="showEditSeriesModal" :series="series" />
Expand Down

0 comments on commit fa66577

Please sign in to comment.