Skip to content

Commit

Permalink
Add padding to Series page metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
glorenzen committed Feb 13, 2025
1 parent 60e6e22 commit 19641c3
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions client/pages/library/_library/series/_id.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,22 @@
<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="flex items-center my-8">
<h1 class="text-2xl">{{ series.name }}</h1>
<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>
</div>
<div class="mb-6">
<h2 class="font-semibold">
{{ $strings.LabelDescription }}
</h2>
<div>{{ series.description }}</div>
<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>

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

Expand Down

0 comments on commit 19641c3

Please sign in to comment.