-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInfoChild.vue
60 lines (58 loc) · 1.13 KB
/
InfoChild.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
<template>
<h1 :class="[props.slug, isOpen ? 'open' : '']">{{ pagedata.title }}</h1>
<div class="info-section">
<div
v-for="block in pagedata.blocks"
:key="block.id"
class="single-info"
v-html="block"
></div>
</div>
</template>
<script setup>
const props = defineProps({
pagedata: Object,
childIndex: Number,
slug: String,
isOpen: Boolean,
});
</script>
<style lang="scss" scoped>
h1 {
text-align: center;
text-decoration: underline;
text-decoration-thickness: 1px;
margin-bottom: 1rem;
position: sticky;
top: 0rem;
background-color: transparent;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
width: 100%;
background-color: white;
@include mobile {
font-size: $mobileBigSize !important;
text-decoration: none;
height: 8rem;
cursor: pointer;
&.impressum,
&.privatsphare {
// padding-top: 0;
// line-height: 1;
background-color: black;
color: white;
&.open {
color: black;
padding-top: 0.5rem;
line-height: 1.2;
}
}
}
}
* {
font-size: 1rem;
@include mobile {
font-size: 4rem;
}
}
</style>