Skip to content

Commit 06e8e98

Browse files
author
Vue Play
committed
Stored by Vue Play
1 parent c4adcd1 commit 06e8e98

File tree

3 files changed

+94
-1
lines changed

3 files changed

+94
-1
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"socket.io-client": "^4.7.4",
1414
"@feathersjs/client": "^5.0.22",
1515
"moment": "^2.30.1",
16-
"highlight.js": "^11.9.0"
16+
"highlight.js": "^11.9.0",
17+
"@vueplayio/text": "https://manager.vueplay.io/text@^0.0.9"
1718
},
1819
"devDependencies": {
1920
"@jscomponent/rollup": "^1.0.4",

src/assets/arctic.png

1.31 MB
Loading

src/views/Roadmap.vue

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
<template>
2+
<div class="bg-slate-100">
3+
<Meta
4+
description="24.07.2023 - Release 1.0.5 | Drag and drop Tailwind Hero Icons into the Playground with Vue Play"
5+
title="Drag and drop Tailwind Hero Icons into the Playground"
6+
>
7+
</Meta>
8+
<VueNavigator class="z-10" />
9+
<header>
10+
<h1 class="text-6xl mt-12 mb-6">Roadmap</h1>
11+
</header>
12+
<main class="p-6 m-auto max-w-xl container">
13+
<section class="shadow border mb-6 rounded-lg bg-white p-6">
14+
<h3>Theme Arctic</h3><Text
15+
fontSize="{`default`:{`xs`:{`light`:`16px`}}}"
16+
color="{`default`:{`xs`:{`light`:`#0a0a0aff`}}}"
17+
style="margin:0px;margin-top:10px;margin-bottom:10px"
18+
>Test</Text><img
19+
src="@/assets/arctic.png"
20+
width="100"
21+
height="100"
22+
style="width:100%;height:250px;border-radius:11px;object-fit:cover"
23+
/>
24+
</section>
25+
</main>
26+
<Footer />
27+
</div>
28+
</template>
29+
<script>
30+
import Text from '@vueplayio/text';
31+
import VueNavigator from "@/components/Navigator.vue";
32+
import Footer from "@/components/Footer.vue";
33+
import Meta from "@/components/Meta.vue";
34+
export default {
35+
components: {
36+
Text: Text,
37+
VueNavigator,
38+
Footer,
39+
Meta
40+
}
41+
};
42+
43+
</script>
44+
<style scoped>
45+
body,
46+
html,
47+
#app {
48+
margin-top: 0px;
49+
margin-left: 0px;
50+
margin-bottom: 0px;
51+
margin-right: 0px;
52+
}
53+
54+
main {
55+
font-family: verdana;
56+
}
57+
58+
header {
59+
text-align: center;
60+
font-family: verdana;
61+
padding-top: 10px;
62+
padding-bottom: 10px;
63+
}
64+
65+
h2 {
66+
font-size: 30px;
67+
margin-top: 100px;
68+
text-align: left;
69+
}
70+
71+
h3 {
72+
font-weight: bold;
73+
}
74+
75+
p {
76+
font-size: 20px;
77+
color: #6b6b6bff;
78+
margin-top: 50px;
79+
margin-bottom: 15px;
80+
}
81+
82+
ul {
83+
display: inline-block;
84+
margin-top: 20px;
85+
margin-bottom: 20px;
86+
}
87+
88+
li {
89+
padding-bottom: 5px;
90+
}
91+
92+
</style>

0 commit comments

Comments
 (0)