File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -97,10 +97,7 @@ export default function PdfViewer({ url, name }: PdfViewerProps) {
97
97
{ /* Controls */ }
98
98
< div className = "mt-4 flex flex-col items-center gap-4 rounded-lg bg-[#262635] p-4 shadow sm:flex-row" >
99
99
{ /* Page Navigation */ }
100
- < ShareButton />
101
- < Button onClick = { downloadPDF } className = "aspect-square h-10 w-10 p-0" >
102
- < Download />
103
- </ Button >
100
+
104
101
< div className = "flex items-center gap-2" >
105
102
< Button
106
103
onClick = { goToPreviousPage }
@@ -129,6 +126,7 @@ export default function PdfViewer({ url, name }: PdfViewerProps) {
129
126
130
127
{ /* Zoom Controls */ }
131
128
< div className = "flex items-center gap-2" >
129
+ { " " }
132
130
< Button
133
131
onClick = { zoomOut }
134
132
disabled = { scale <= 0.25 }
@@ -144,6 +142,10 @@ export default function PdfViewer({ url, name }: PdfViewerProps) {
144
142
>
145
143
{ < ZoomIn /> }
146
144
</ Button >
145
+ < ShareButton />
146
+ < Button onClick = { downloadPDF } className = "aspect-square h-10 w-10 p-0" >
147
+ < Download />
148
+ </ Button >
147
149
</ div >
148
150
</ div >
149
151
</ div >
You can’t perform that action at this time.
0 commit comments