label font size

This commit is contained in:
hamid zarghami
2026-05-11 14:44:23 +03:30
parent 99f77755c6
commit 864b10c9a8
+2 -2
View File
@@ -85,14 +85,14 @@ const LayersPanel = ({ isOpen, setIsOpen }: LayersPanelProps) => {
<div className="fixed border-l border-border left-20 top-[100px] bottom-4 z-30 flex flex-col w-[232px]"> <div className="fixed border-l border-border left-20 top-[100px] bottom-4 z-30 flex flex-col w-[232px]">
<div className="bg-white rounded-r-4xl flex flex-col h-full"> <div className="bg-white rounded-r-4xl flex flex-col h-full">
<div className="flex items-center justify-between p-4 border-b border-border"> <div className="flex items-center justify-between p-4 border-b border-border">
<div className="flex items-center gap-3"> <div className="flex items-center gap-1">
<button <button
onClick={() => setIsOpen(false)} onClick={() => setIsOpen(false)}
className="w-10 h-10 flex items-center justify-center rounded-lg hover:bg-gray-100 transition-colors" className="w-10 h-10 flex items-center justify-center rounded-lg hover:bg-gray-100 transition-colors"
> >
<ArrowLeft2 size={20} color="black" /> <ArrowLeft2 size={20} color="black" />
</button> </button>
<h2 className="text-lg font-medium"> <h2 className="text-base font-medium">
{TAB_LABELS[activeTab]} {TAB_LABELS[activeTab]}
</h2> </h2>
</div> </div>