Skip to content

Commit d98ba62

Browse files
author
“云云”
committed
fix bug
1 parent 42fb105 commit d98ba62

File tree

8 files changed

+12
-5
lines changed

8 files changed

+12
-5
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ Github:
2020

2121
## 发刊记录
2222

23+
- [第 02 期 - 回家过年](https://markyun.github.io/weekly/posts/02-%E5%9B%9E%E5%AE%B6%E8%BF%87%E5%B9%B4/)
2324
- [第 01 期 - Web 情报局](https://markyun.github.io/weekly/posts/1-Web%E6%83%85%E6%8A%A5%E5%B1%80)

public/assets/WebCIA-logo.png

5.18 KB
Loading

public/assets/WebCIA.svg

Lines changed: 1 addition & 0 deletions
Loading

public/assets/favicon.ico

15 KB
Binary file not shown.

public/assets/logo.svg

Lines changed: 1 addition & 0 deletions
Loading

src/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ export const SITE = {
33
author: "MarkYun",
44
description: "为大家提供保持领先所需的见解,每周发布,欢迎收藏",
55
keywords: "MarkYun,WebCIA,Weekly,Web,前端,React,JavaScript,",
6-
icon: "https://markyun.github.io/images/avatar.png",
7-
pic: "https://markyun.github.io/images/avatar.png",
6+
icon: "https://markyun.github.io/weekly/assets/WebCIA.svg",
7+
pic: "https://markyun.github.io/weekly/assets/WebCIA.svg",
88
homePage: "https://markyun.github.io/weekly/",
99
blogPage: "https://markyun.github.io/",
1010
twitterId: "AsciiArt007",

src/pages/rss.xml.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const get = () =>
1717
title: 'WebCIA Weekly',
1818
description: '保持领先所需的见解',
1919
site: 'https://markyun.github.io/weekly/',
20-
customData: `<image><url>https://markyun.github.io/images/avatar.png</url></image>`,
20+
customData: `<image><url>https://markyun.github.io/weekly/assets/WebCIA.svg</url></image>`,
2121
items: posts.map((item) => {
2222
const url = item.url;
2323
const oldTitle = url.split("/posts/")[1];

src/styles/theme.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,12 @@ body:not(img):not(canvas):not(video):not(svg):not(.ant-segmented).dark{
8282
background: #191A27;
8383
filter: invert(1) hue-rotate(180deg) brightness(120%) contrast(90%);
8484
}
85+
.dark img{
86+
filter: invert(1) hue-rotate(180deg) brightness(120%) contrast(90%);
87+
}
8588
.dark aside{
86-
background: #232423!important;
89+
/* background: rgb(48, 46, 46)!important; */
90+
border-left: 1px solid #505050;
8791
border-right: 1px solid #505050;
88-
filter: invert(1) hue-rotate(180deg) brightness(120%) contrast(90%);
92+
/* filter: invert(1) hue-rotate(180deg) brightness(120%) contrast(90%); */
8993
}

0 commit comments

Comments
 (0)