From 2f253bbb484f9605eae273df062d978ec5d55bd1 Mon Sep 17 00:00:00 2001 From: Spythere Date: Sat, 20 Mar 2021 21:59:00 +0100 Subject: [PATCH] =?UTF-8?q?Poprawki=20w=20wygl=C4=85dzie?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 2 +- src/components/TrainsView/TrainOptions.vue | 2 +- src/components/TrainsView/TrainStats.vue | 4 ++-- src/components/TrainsView/TrainTable.vue | 10 +--------- 4 files changed, 5 insertions(+), 13 deletions(-) diff --git a/src/App.vue b/src/App.vue index 718c4bb..6fad4f1 100644 --- a/src/App.vue +++ b/src/App.vue @@ -108,7 +108,7 @@ export default class App extends Vue { @Action("synchronizeData") synchronizeData; @Getter("getAllData") data; - private VERSION = "1.4.3"; + private VERSION = "1.4.4"; hasReleaseNotes = false; updateModalVisible = false; diff --git a/src/components/TrainsView/TrainOptions.vue b/src/components/TrainsView/TrainOptions.vue index 6692ad4..a0c9f03 100644 --- a/src/components/TrainsView/TrainOptions.vue +++ b/src/components/TrainsView/TrainOptions.vue @@ -232,7 +232,7 @@ export default class TrainOptions extends Vue { justify-content: space-between; align-items: center; - padding: 0.25em 0.5em; + padding: 0.5em 0.5em; min-width: 200px; cursor: pointer; diff --git a/src/components/TrainsView/TrainStats.vue b/src/components/TrainsView/TrainStats.vue index 582232e..a655896 100644 --- a/src/components/TrainsView/TrainStats.vue +++ b/src/components/TrainsView/TrainStats.vue @@ -227,7 +227,7 @@ export default class TrainStats extends Vue { } &-header { - margin-bottom: 1rem; + margin-bottom: 0.85em; } &-body { @@ -239,7 +239,7 @@ export default class TrainStats extends Vue { background: #222; border-radius: 0 1em 1em 1em; - padding: 1rem; + padding: 1em; } &-content { diff --git a/src/components/TrainsView/TrainTable.vue b/src/components/TrainsView/TrainTable.vue index e65c27b..5117e89 100644 --- a/src/components/TrainsView/TrainTable.vue +++ b/src/components/TrainsView/TrainTable.vue @@ -263,9 +263,7 @@ export default class TrainTable extends Vue { & > .wrapper { display: grid; - grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); - - gap: 2em 0; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); // @include midScreen() { // grid-template-columns: 1fr; @@ -423,12 +421,6 @@ export default class TrainTable extends Vue { } } -@include bigScreen() { - .item { - font-size: 1em; - } -} - @include smallScreen() { .info-bottom { text-align: center;