Update Page editor styling

This commit is contained in:
Reece
2025-06-16 15:11:00 +01:00
parent ac3da9b7c2
commit 7fc850b138
4 changed files with 458 additions and 207 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ export class RotatePagesCommand extends PageCommand {
execute(): void {
const updatedPages = this.pdfDocument.pages.map(page => {
if (this.pageIds.includes(page.id)) {
return { ...page, rotation: (page.rotation + this.rotation) % 360 };
return { ...page, rotation: page.rotation + this.rotation };
}
return page;
});