diff --git a/frontend/src/pages/Packages.jsx b/frontend/src/pages/Packages.jsx
index e0b75fb..101e3a2 100644
--- a/frontend/src/pages/Packages.jsx
+++ b/frontend/src/pages/Packages.jsx
@@ -660,13 +660,14 @@ const ColumnSettingsModal = ({
{columnConfig.map((column, index) => (
-
handleDragStart(e, index)}
onDragOver={handleDragOver}
onDrop={(e) => handleDrop(e, index)}
- className={`flex items-center justify-between p-3 border rounded-lg cursor-move ${
+ className={`flex items-center justify-between p-3 border rounded-lg cursor-move w-full text-left ${
draggedIndex === index
? "opacity-50"
: "hover:bg-secondary-50 dark:hover:bg-secondary-700"
@@ -693,7 +694,7 @@ const ColumnSettingsModal = ({
)}
-
+
))}
diff --git a/frontend/src/pages/Repositories.jsx b/frontend/src/pages/Repositories.jsx
index c757117..d6e641b 100644
--- a/frontend/src/pages/Repositories.jsx
+++ b/frontend/src/pages/Repositories.jsx
@@ -580,13 +580,14 @@ const ColumnSettingsModal = ({
{columnConfig.map((column, index) => (
-
handleDragStart(e, index)}
onDragOver={handleDragOver}
onDrop={(e) => handleDrop(e, index)}
- className="flex items-center justify-between p-3 bg-secondary-50 dark:bg-secondary-700 rounded-lg cursor-move hover:bg-secondary-100 dark:hover:bg-secondary-600 transition-colors"
+ className="flex items-center justify-between p-3 bg-secondary-50 dark:bg-secondary-700 rounded-lg cursor-move hover:bg-secondary-100 dark:hover:bg-secondary-600 transition-colors w-full text-left"
>
@@ -605,7 +606,7 @@ const ColumnSettingsModal = ({
>
{column.visible && }
-
+
))}