Skip to content

Commit abf3fa0

Browse files
committed
show snapshot nav also in xl breakproint ~1904px and more width
1 parent 245bf09 commit abf3fa0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

vue/src/views/Snapshot.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,13 +132,16 @@ body,
132132
height: calc(100vh - var(--vh-offset, 0px)) !important;
133133
z-index: 9999; /* must be above mapbox interface */
134134
}
135+
135136
#snapshotnavContent {
136137
padding-bottom: 6em;
137138
}
139+
138140
#map {
139141
position: relative;
140142
width: 100%;
141143
}
144+
142145
#mapinfo {
143146
position: absolute;
144147
bottom: 2em;
@@ -156,6 +159,7 @@ body,
156159
#snapshotview .v-text-field--outlined fieldset {
157160
border-color: rgba(0, 0, 0, 0.12);
158161
}
162+
159163
#snapshotview .gemeindesuche input::placeholder {
160164
color: #000;
161165
opacity: 1;
@@ -225,7 +229,7 @@ export default {
225229
methods: {
226230
getInitialSnapshotnav() {
227231
if (this.$route.params.hash) {
228-
if (this.$vuetify.breakpoint.name === 'lg') {
232+
if (['lg', 'xl'].includes(this.$vuetify.breakpoint.name)) {
229233
return true;
230234
}
231235
return false;

0 commit comments

Comments
 (0)