diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx
index 06920b38..f3d2512a 100644
--- a/frontend/src/App.jsx
+++ b/frontend/src/App.jsx
@@ -362,7 +362,8 @@ export default function App() {
onDragOver={(e) => e.preventDefault()}
onDrop={handleDropNewParam}
>
-
+
{activeTab.params.map((p, i) => (
@@ -408,6 +409,7 @@ export default function App() {
)}
))}
+ Drop your input XML files here..
diff --git a/frontend/src/style.css b/frontend/src/style.css
index 59364207..5d18a6e8 100644
--- a/frontend/src/style.css
+++ b/frontend/src/style.css
@@ -87,6 +87,29 @@ body,
padding: 0.5rem;
}
+.params-header {
+ position: relative;
+ margin-bottom: 0.5rem;
+}
+
+.params-header .title {
+ width: 100%;
+ text-align: center;
+ font-weight: bold;
+}
+
+.params-header button {
+ position: absolute;
+ right: 0;
+ top: 0;
+}
+
+.drop-hint {
+ text-align: center;
+ color: #666;
+ margin-top: 0.5rem;
+}
+
.editor {
width: 70%;
padding: 0.5rem;