diff --git a/src/pages/api-operation-page/export-to-xlsx.tsx b/src/pages/api-operation-page/export-to-xlsx.tsx
index 635049a..e393cb6 100644
--- a/src/pages/api-operation-page/export-to-xlsx.tsx
+++ b/src/pages/api-operation-page/export-to-xlsx.tsx
@@ -22,37 +22,39 @@ const ExcelExportButton = ({ dataList, setDataList }) => {
return (
-
- Liste des publications à exporter
-
-
- {Array.isArray(dataList) &&
- dataList.map((item, index) => (
- -
-
-
-
- {item.publi_id}
-
-
à lier à
-
- {item.fullName}
-
-
-
-
- ))}
-
-
+
+
+ Liste des publications à exporter
+
+
+ {Array.isArray(dataList) &&
+ dataList.map((item, index) => (
+ -
+
+
+
+ {item.publi_id}
+
+
à lier à
+
+ {item.fullName}
+
+
+
+
+ ))}
+
+
+
);
};
diff --git a/src/pages/api-operation-page/styles.scss b/src/pages/api-operation-page/styles.scss
index 259c652..f03eb07 100644
--- a/src/pages/api-operation-page/styles.scss
+++ b/src/pages/api-operation-page/styles.scss
@@ -22,19 +22,23 @@
.basket {
position: fixed;
right: 0;
- top: 0;
+ top: 50px;
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
- margin: 20px;
+ margin: 0 20px 20px 20px;
z-index: 1000;
background-color: white;
border-radius: 20px;
border: 2px solid black;
+}
+
+.basket-content {
max-height: 500px;
overflow-y: auto;
+ width: 100%;
}
.basket-item {
display: flex;