diff --git a/src/components/Global/Donation.vue b/src/components/Global/Donation.vue index 14e4b09..87b3fa9 100644 --- a/src/components/Global/Donation.vue +++ b/src/components/Global/Donation.vue @@ -1,129 +1,157 @@ diff --git a/src/components/Global/RegionDropdown.vue b/src/components/Global/RegionDropdown.vue index d515ce1..42fc10b 100644 --- a/src/components/Global/RegionDropdown.vue +++ b/src/components/Global/RegionDropdown.vue @@ -59,8 +59,6 @@ export default defineComponent({ 'store.region.id': { handler(regionId) { this.selectedItemIndex = this.regionList.findIndex((reg) => reg.id == regionId); - - console.log('region id', regionId); } }, '$route.query.region': { diff --git a/src/components/Global/StockList.vue b/src/components/Global/StockList.vue index 3a4429b..8ac4d48 100644 --- a/src/components/Global/StockList.vue +++ b/src/components/Global/StockList.vue @@ -98,8 +98,6 @@ export default defineComponent({ fallbackName += isCarPassenger ? 'passenger' : 'cargo'; } - console.log(stockName, fallbackName); - (event.target as HTMLImageElement).src = `/images/icon-${fallbackName}.png`; } } diff --git a/src/components/StationsView/StationFilterCard.vue b/src/components/StationsView/StationFilterCard.vue index ad7f89a..c7baad9 100644 --- a/src/components/StationsView/StationFilterCard.vue +++ b/src/components/StationsView/StationFilterCard.vue @@ -256,8 +256,6 @@ export default defineComponent({ }, handleAuthorsInput() { - console.log(this.authorsInputValue); - this.filterStore.changeFilterValue('authors', this.authorsInputValue); if (this.saveOptions) StorageManager.setStringValue('authors', this.authorsInputValue); diff --git a/src/locales/en.json b/src/locales/en.json index 8630c2c..11ae77d 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -2,6 +2,7 @@ "donations": { "button-title": "TOSS A COIN", "header": "Toss a coin to Stacjownik!", + "donator-title": "Project is supported by more than {count} people, including:", "p1": "Hello o7! This is Spythere, the creator of Stacjownik, Pojazdownik and several other applications that enhance the gameplay of Train Driver 2!", "p2": "{b1} is a completely free tool, created and continuously developed for the Train Driver 2 simulator community since 2020. However, a part of the project is sustained solely through my private financial contribution. Features such as {b2} or {b3} (operating on my {link} - to which you are warmly invited) must function on a dedicated server where they can collect and process data, and then display it on the website.", "p2-b1": "Stacjownik", diff --git a/src/locales/pl.json b/src/locales/pl.json index 2cfd36d..ecf8f06 100644 --- a/src/locales/pl.json +++ b/src/locales/pl.json @@ -2,6 +2,7 @@ "donations": { "button-title": "GROSZA DAJ", "header": "Grosza daj Stacjownikowi!", + "donator-title": "Projekt wspiera już ponad {count} osób, w tym:", "p1": "Hej o7! Z tej strony Spythere, twórca Stacjownika, Pojazdownika oraz kilku innych aplikacji wspomagających rozgrywkę symulatora Train Driver 2!", "p2": "{b1} to narzędzie całkowicie darmowe, tworzone i rozwijane dla społeczności symulatora TD2 nieprzerwanie od 2020 roku. Jednakże, część projektu jest podtrzymywana wyłącznie dzięki mojemu prywatnemu wkładowi finansowemu. Funkcje takie jak {b2} czy też {b3} działający na moim {link} (na który serdeczne zapraszam) muszą działać na wydzielonym serwerze, gdzie będą mogły zbierać i przetwarzać dane, aby następnie pokazać je na stronie.", "p2-b1": "Stacjownik", diff --git a/src/styles/global.scss b/src/styles/global.scss index 94e5cef..0d3e79b 100644 --- a/src/styles/global.scss +++ b/src/styles/global.scss @@ -49,6 +49,9 @@ body { padding: 0; font-family: 'Quicksand', sans-serif; font-weight: 500; + text-rendering: optimizeLegibility !important; + -webkit-font-smoothing: antialiased !important; + overflow-y: scroll; &.no-scroll { diff --git a/src/views/StationsView.vue b/src/views/StationsView.vue index f6f419a..e52f9de 100644 --- a/src/views/StationsView.vue +++ b/src/views/StationsView.vue @@ -8,9 +8,18 @@ ref="filterCardRef" /> - + + @@ -109,4 +118,20 @@ export default defineComponent({ margin-bottom: 0.5em; } + +button.btn-donation { + $btnColor: #254069; + + background-color: $btnColor; + + &:hover { + background-color: lighten($btnColor, 5%); + } + + @include smallScreen { + span { + display: none; + } + } +}