diff --git a/frontend/app/components/managers/WindowManager.vue b/frontend/app/components/managers/WindowManager.vue
index cbccfd9..616753b 100644
--- a/frontend/app/components/managers/WindowManager.vue
+++ b/frontend/app/components/managers/WindowManager.vue
@@ -4,13 +4,9 @@ import { windows, getComponent } from '@/services/Windows';
-
+
+
+
@@ -21,16 +17,18 @@ import { windows, getComponent } from '@/services/Windows';
}
.window-enter-from,
.window-leave-to {
+ transition: all 0.15s ease;
opacity: 0;
transform: translateY(15px);
}
+.window-move {
+ transition: transform 0.15s ease;
+}
.window-wrapper {
background-color: var(--color-window-background);
/* backdrop-filter: blur(10px); */
- position: fixed;
-
display: flex;
flex-direction: column;
diff --git a/frontend/app/components/windows/CreateCampaignWindow.vue b/frontend/app/components/windows/CreateCampaignWindow.vue
new file mode 100644
index 0000000..810b317
--- /dev/null
+++ b/frontend/app/components/windows/CreateCampaignWindow.vue
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/app/components/windows/MainMenuWindow.vue b/frontend/app/components/windows/MainMenuWindow.vue
index 83fa5a9..411d141 100644
--- a/frontend/app/components/windows/MainMenuWindow.vue
+++ b/frontend/app/components/windows/MainMenuWindow.vue
@@ -1,6 +1,6 @@