page panel font size

This commit is contained in:
hamid zarghami
2026-05-11 15:07:32 +03:30
parent 60e94368ec
commit 7058435d3f
+6 -6
View File
@@ -68,24 +68,24 @@ const PagesPanel = () => {
<div className="flex items-center justify-center gap-3">
<button
onClick={handleAddPage}
className="w-10 h-10 flex items-center justify-center rounded-lg bg-white hover:bg-gray-100 transition-colors "
className="size-7 flex items-center justify-center rounded-lg bg-white hover:bg-gray-100 transition-colors "
>
<AddSquare size={20} color="black" />
<AddSquare size={16} color="black" />
</button>
{currentPageId && (
<>
<button
onClick={() => handleDuplicatePage(currentPageId)}
className="w-10 h-10 flex items-center justify-center rounded-lg bg-white hover:bg-gray-100 transition-colors "
className="size-7 flex items-center justify-center rounded-lg bg-white hover:bg-gray-100 transition-colors "
>
<Copy size={20} color="black" />
<Copy size={16} color="black" />
</button>
<button
onClick={() => handleDeletePage(currentPageId)}
disabled={pages.length <= 1}
className="w-10 h-10 flex items-center hover:bg-gray-100 justify-center rounded-lg transition-colors disabled:opacity-50 disabled:cursor-not-allowed"
className="size-7 flex items-center hover:bg-gray-100 justify-center rounded-lg transition-colors disabled:opacity-50 disabled:cursor-not-allowed"
>
<Trash size={20} color="#FF3B30" />
<Trash size={16} color="#FF3B30" />
</button>
</>
)}