diff --git a/summer2024-frontend/index.html b/summer2024-frontend/index.html index 48ef049..0c3818f 100644 --- a/summer2024-frontend/index.html +++ b/summer2024-frontend/index.html @@ -4,6 +4,7 @@ + carnet de voyage été 2024 - kektus diff --git a/summer2024-frontend/src/components/PostComponent.vue b/summer2024-frontend/src/components/PostComponent.vue index 129dde9..6b1a661 100644 --- a/summer2024-frontend/src/components/PostComponent.vue +++ b/summer2024-frontend/src/components/PostComponent.vue @@ -23,6 +23,7 @@ function postDataToggle() { } for (const desc of postDataDescription.value) { desc.classList.add("opacity-0"); + desc.classList.remove("scrollable-element"); } for (const btn of postActionBtn.value) { btn.classList.remove("top-0"); @@ -42,6 +43,7 @@ function postDataToggle() { } for (const desc of postDataDescription.value) { desc.classList.remove("opacity-0"); + desc.classList.add("scrollable-element"); } for (const btn of postActionBtn.value) { btn.classList.add("top-0"); diff --git a/summer2024-frontend/src/components/WelcomeComponent.vue b/summer2024-frontend/src/components/WelcomeComponent.vue index d23ff70..4376940 100644 --- a/summer2024-frontend/src/components/WelcomeComponent.vue +++ b/summer2024-frontend/src/components/WelcomeComponent.vue @@ -7,15 +7,15 @@ const postsStore = usePostsStore()