fix text
This commit is contained in:
parent
12c38ce414
commit
d1c7d730e8
|
@ -100,8 +100,8 @@ watch(() => route.params.target, () => {
|
||||||
|
|
||||||
.homelink {
|
.homelink {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 2rem;
|
||||||
bottom: 0;
|
bottom: 2rem;
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
font-size: 3rem;
|
font-size: 3rem;
|
||||||
|
@ -109,7 +109,7 @@ watch(() => route.params.target, () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
margin-bottom: 2rem;
|
margin-top: 2rem;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
border: 1px solid white;
|
border: 1px solid white;
|
||||||
background: white;
|
background: white;
|
||||||
|
|
|
@ -29,7 +29,9 @@ const sidebar_obj = ref()
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<template v-for="item in scene.list">
|
<template v-for="item in scene.list">
|
||||||
<h3>{{ item.name }}</h3>
|
<h3>{{ item.name }}</h3>
|
||||||
<p>{{ item.description }}</p>
|
<template v-for="p in item.description.split('\n')">
|
||||||
|
<p>{{ p }}</p>
|
||||||
|
</template>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue