File tree 5 files changed +24
-3
lines changed
5 files changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -106,21 +106,21 @@ const coverStyle = computed(() => {
106
106
max-width : 80% ;
107
107
font-size : clamp (2rem , 1.636rem + 1.82vw , 3rem );
108
108
color : var (--vp-c-text-1 );
109
+ mix-blend-mode : difference ;
109
110
line-height : 2 ;
110
111
font-weight : 800 ;
111
112
white-space : nowrap ;
112
113
text-overflow : ellipsis ;
113
114
overflow : hidden ;
114
- filter : drop-shadow (0px 4px 6px var (--vp-c-text-1 ));
115
115
}
116
116
.cover .cover-title .description {
117
117
max-width : 80% ;
118
118
font-size : 1.2rem ;
119
119
color : var (--vp-c-text-2 );
120
+ mix-blend-mode : difference ;
120
121
white-space : nowrap ;
121
122
text-overflow : ellipsis ;
122
123
overflow : hidden ;
123
- filter : drop-shadow (0px 2px 3px var (--vp-c-text-2 ));
124
124
}
125
125
126
126
.cover.with-cover {
Original file line number Diff line number Diff line change @@ -113,8 +113,11 @@ const lastUpdated = computed(() => {
113
113
</template >
114
114
115
115
<style scoped>
116
+ .article {
117
+ flex-grow : 1 ;
118
+ }
116
119
.article .article-tags {
117
- filter : drop-shadow ( 0 px 2 px 3 px var ( --vp-c-text-2 )) ;
120
+ mix-blend-mode : difference ;
118
121
}
119
122
.article .vp-doc {
120
123
padding-top : calc (var (--vp-size-space ) * 2 );
Original file line number Diff line number Diff line change @@ -36,3 +36,9 @@ const { list } = usePagination()
36
36
<slot name =" page-bottom" />
37
37
</section >
38
38
</template >
39
+
40
+ <style scoped>
41
+ .page {
42
+ flex-grow : 1 ;
43
+ }
44
+ </style >
Original file line number Diff line number Diff line change @@ -54,3 +54,9 @@ const title = computed(() => {
54
54
<slot name =" tag-bottom" />
55
55
</section >
56
56
</template >
57
+
58
+ <style scoped>
59
+ .tag {
60
+ flex-grow : 1 ;
61
+ }
62
+ </style >
Original file line number Diff line number Diff line change
1
+ # app {
2
+ display : flex;
3
+ flex-direction : column;
4
+ min-height : 100vh ;
5
+ }
6
+
1
7
.main {
2
8
margin-left : auto;
3
9
margin-right : auto;
You can’t perform that action at this time.
0 commit comments