File tree Expand file tree Collapse file tree 6 files changed +32
-9
lines changed Expand file tree Collapse file tree 6 files changed +32
-9
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
+ <div >
3
+ <h2 class =" name" >
4
+ Grace
5
+ </h2 >
6
+ </div >
2
7
<div id =" demo-editor" ref =" domRef" >
3
8
<div class =" terminal" >
4
9
<slot />
70
75
</script >
71
76
72
77
<style lang="less">
78
+ h2 {
79
+ text-align : center ;
80
+ font-weight : 600 ;
81
+ color : var (--vp-font-color );
82
+ padding-bottom : 1rem ;
83
+ }
84
+
73
85
#demo-editor {
74
86
display : flex ;
75
87
justify-content : center ;
Original file line number Diff line number Diff line change 1
1
<script setup lang="ts">
2
2
import DemoEditor from ' ./DemoEditor.vue'
3
- // import HomeTeam from './HomeTeam.vue'
3
+ import HomeTeam from ' ./HomeTeam.vue'
4
4
import Icon from ' ./Icon.vue'
5
5
// import Waves from '../Waves/index.vue'
6
6
import Waves from ' ../Wave.vue'
106
106
<pre ref="block" class="text-left whitespace-normal font-mono bg-transparent"></pre>
107
107
</div> -->
108
108
</DemoEditor >
109
- <!-- < HomeTeam /> -- >
109
+ <HomeTeam />
110
110
</div >
111
111
</template >
112
112
Original file line number Diff line number Diff line change 1
1
<script setup lang="ts">
2
2
import DemoEditor from ' ./DemoEditor.vue'
3
- // import HomeTeam from './HomeTeam.vue'
3
+ import HomeTeam from ' ./HomeTeam.vue'
4
4
import Icon from ' ./Icon.vue'
5
5
6
6
// import Waves from '../Waves/index.vue'
102
102
Demo.vue
103
103
</div >
104
104
</DemoEditor >
105
- <!-- < HomeTeam /> -- >
105
+ <HomeTeam />
106
106
</div >
107
107
</template >
108
108
Original file line number Diff line number Diff line change 24
24
h2 {
25
25
text-align : center ;
26
26
font-weight : 600 ;
27
- transform : scale (0.6 );
27
+ /* transform: scale(0.8); */
28
28
color : var (--vp-font-color );
29
+ padding-bottom : 1rem ;
29
30
}
30
31
31
32
.main {
32
33
/* padding: 96px 32px; */
33
34
text-align : center ;
35
+ background-color : var (--vp-c-bg );
34
36
}
35
37
36
38
.grid {
Original file line number Diff line number Diff line change 1
1
.home {
2
2
height : 100% ;
3
3
padding-top : 24px ;
4
- background : url(' /light.jpg' ) ;
4
+ // background: url('/light.jpg');
5
+ background-size : contain ;
5
6
}
6
7
.dark {
7
8
.home {
8
9
padding-top : 24px ;
9
10
background : url(' /dark.jpg' ) no-repeat ;
11
+ background-size : contain ;
10
12
}
11
13
}
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export interface CoreTeam {
18
18
19
19
const contributorsAvatars : Record < string , string > = { }
20
20
21
- const getAvatarUrl = ( name : string ) => `https://github.com/${ name } .png`
21
+ const getAvatarUrl = ( name : string ) => `https://github.com/${ encodeURIComponent ( name ) } .png`
22
22
23
23
const contributorList = ( contributors as string [ ] ) . reduce ( ( acc , name ) => {
24
24
contributorsAvatars [ name ] = getAvatarUrl ( name )
@@ -40,16 +40,23 @@ const coreTeamMembers: CoreTeam[] = [
40
40
avatar : contributorsAvatars . hongaah ,
41
41
name : 'Hongaah' ,
42
42
github : 'hongaah' ,
43
- description : '' ,
43
+ description : "Swiftcode's Author" ,
44
44
functions : [ 'useSetState' , 'useWebSocket' ] ,
45
45
} ,
46
+ {
47
+ avatar : "https://avatars.githubusercontent.com/u/51957438?v=4" ,
48
+ name : 'XiaoDaiGua-Ray' ,
49
+ github : 'XiaoDaiGua-Ray' ,
50
+ description : 'Tring be better~' ,
51
+ functions : [ 'useElementBounding' , 'useMutationObserver' ] ,
52
+ } ,
46
53
{
47
54
avatar : contributorsAvatars . Noobbbbbbb ,
48
55
name : 'Noobbbbbbb' ,
49
56
github : 'Noobbbbbbb' ,
50
57
description : '' ,
51
58
functions : [ 'useFullscreen' ] ,
52
- } ,
59
+ }
53
60
]
54
61
// .sort(
55
62
// (pre, cur) =>
You can’t perform that action at this time.
0 commit comments