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;