-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLocation.vue
63 lines (61 loc) · 1.3 KB
/
Location.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<template>
<h3 :id="location.id">{{ location.headline }}</h3>
<div class="location-date">{{ location.datefield }}</div>
<div class="location-description">{{ location.description }}</div>
<div class="location-images" v-if="location.images.length > 1">
<img v-for="image in location.images" :key="image" :src="image" >
</div>
<div class="single-location-image" v-else>
<img v-for="image in location.images" :key="image" :src="image" >
</div>
</template>
<script>
export default {
props: {
location: {
type: Object,
default: null,
},
}
}
</script>
<style scoped lang="scss">
h3 {
@include galaxieMedium;
font-size: 1.3rem;
@include mobile {
font-size: 4.3rem;
}
}
.location-date {
@include LibreCaslon;
font-size: 1.3rem;
@include mobile {
font-size: 4rem;
}
}
.location-description {
margin-top: $generalMargin;
@include workSans;
@include mobile {
font-size: 4rem;
}
}
.single-location-image {
margin-top: $generalMargin;
img {
width: 100%;
}
}
.location-images {
column-count: 2;
margin-top: 2rem;
column-gap: $generalMargin;
img {
width: 100%;
height: auto;
margin-bottom: $generalMargin;
display: block;
}
}
</style>