-
-
-
-
-
diff --git a/src/locales/en.json b/src/locales/en.json
index d68cd7f..d53f32c 100644
--- a/src/locales/en.json
+++ b/src/locales/en.json
@@ -342,11 +342,10 @@
},
"migrate-info": {
"tooltip-content": "Information about migration of\nStacjownik site!",
- "header-text": "Attention!",
- "paragraph-1-html": "Due to the growing interest in Stacjownik and other applications I have made, as of January 1, 2026, Stacjownik will be permanently moved to a new dedicated domain:",
- "paragraph-2-link-text": "https://stacjownik-td2.spythere.eu",
- "paragraph-3-text": "This website will no longer receive future updates and after the New Year it will only redirect to the address above.",
- "paragraph-4-italic-text": "\"Why are you messing this up? It's been fine for so long!\"",
- "paragraph-4-html": "\"Why are you messing this up? It's been fine for so long!\" The change is mainly caused by the growing website interest and exceeding the free limit plan of the current Google hosting, which forces additional fees for each use of the service above a certain threshold (or otherwise blocks access to it). By moving the site to a dedicated domain (which has already been purchased and is maintained with the financial help of Supporters), I will get rid of unnecessary expenses for a large corporation that can shut down my application at any given time."
+ "header-text": "Information about the site migration",
+ "paragraph-1-html": "Due to the migration of all my applications to a common dedicated domain, Pojazdownik is being moved to:",
+ "paragraph-2-link-text": "https://pojazdownik-td2.spythere.eu/",
+ "paragraph-3-text": "This website will no longer receive future updates and after March 14th it will only redirect to the address above.",
+ "confirm-btn": "ROGER THAT!"
}
}
diff --git a/src/locales/pl.json b/src/locales/pl.json
index d6d0272..abb7944 100644
--- a/src/locales/pl.json
+++ b/src/locales/pl.json
@@ -340,11 +340,7 @@
"warning_military_pn": "PN: transport wojskowy"
},
"migrate-info": {
- "tooltip-content": "Informacja o migracji\nstrony Stacjownika!",
- "header-text": "Uwaga!",
- "paragraph-1-html": "Ze względu na coraz większe zainteresowanie Stacjownikiem oraz innymi aplikacjami mojego autorstwa z dniem 1 stycznia 2026r. Stacjownik zostaje permamentnie przeniesiony na nową dedykowaną domenę:",
- "paragraph-2-link-text": "https://stacjownik-td2.spythere.eu",
- "paragraph-3-text": "Obecna strona nie będzie otrzymywać już przyszłych aktualizacji, a po Nowym Roku będzie jedynie przenosić na powyższy adres.",
- "paragraph-4-html": "\"Po co psujesz? Przecież było dobrze tyle czasu!\" Zmiana podyktowana jest głównie wzrostem zainteresowania stroną i przekraczaniem darmowego limitu obecnego hostingu Google'a, który wymusza płatność za każde użycie serwisu ponad określoną wartość (lub w przeciwnym wypadku blokuje do niego dostęp). Przenosząc stronę na dedykowaną domenę (która jest już wykupiona i utrzymywana dzięki pomocy Wspierających), pozbędę się niepotrzebnego wydatku dla wielkiej korporacji, która w każdej chwili może mi wyłączyć aplikację."
+ "line-1": "Pojazdownik zostaje przeniesiony na nową domenę - {0}! Możesz korzystać z obecnej strony, jednak nie będzie ona otrzymywać już aktualizacji i w przyszłości zostanie wyłączona!",
+ "link": "https://pojazdownik-td2.spythere.eu/"
}
}
diff --git a/src/store.ts b/src/store.ts
index 4f70133..995980c 100644
--- a/src/store.ts
+++ b/src/store.ts
@@ -52,7 +52,7 @@ export const useStore = defineStore('store', {
vehiclePreviewSrc: '',
- isMigrationCardOpen: false,
+ isMigrationInfoOpen: false,
isRandomizerCardOpen: false,
isRealStockListCardOpen: false,
diff --git a/src/styles/_global.scss b/src/styles/_global.scss
index 527884f..5f9f543 100644
--- a/src/styles/_global.scss
+++ b/src/styles/_global.scss
@@ -53,15 +53,6 @@ a {
text-decoration: none;
transition: color 250ms;
-
- &:visited {
- color: white;
- }
-
- &:hover,
- &:focus {
- color: var(--accentColor);
- }
}
select,
@@ -329,7 +320,7 @@ hr {
}
// Vue Transition anims
-.slide-top {
+.slide-top-anim {
&-enter-from,
&-leave-to {
transform: translateY(-100%);
@@ -341,7 +332,19 @@ hr {
}
}
-.card-appear {
+.slide-bottom-anim {
+ &-enter-from,
+ &-leave-to {
+ transform: translateY(100%);
+ }
+
+ &-enter-active,
+ &-leave-active {
+ transition: transform 100ms ease-in-out;
+ }
+}
+
+.card-appear-anim {
&-enter-from,
&-leave-to {
opacity: 0;