Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
“云云” committed Feb 5, 2024
1 parent 42fb105 commit d98ba62
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 5 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ Github:

## 发刊记录

- [第 02 期 - 回家过年](https://markyun.github.io/weekly/posts/02-%E5%9B%9E%E5%AE%B6%E8%BF%87%E5%B9%B4/)
- [第 01 期 - Web 情报局](https://markyun.github.io/weekly/posts/1-Web%E6%83%85%E6%8A%A5%E5%B1%80)
Binary file added public/assets/WebCIA-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/assets/WebCIA.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions public/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ export const SITE = {
author: "MarkYun",
description: "为大家提供保持领先所需的见解,每周发布,欢迎收藏",
keywords: "MarkYun,WebCIA,Weekly,Web,前端,React,JavaScript,",
icon: "https://markyun.github.io/images/avatar.png",
pic: "https://markyun.github.io/images/avatar.png",
icon: "https://markyun.github.io/weekly/assets/WebCIA.svg",
pic: "https://markyun.github.io/weekly/assets/WebCIA.svg",
homePage: "https://markyun.github.io/weekly/",
blogPage: "https://markyun.github.io/",
twitterId: "AsciiArt007",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/rss.xml.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const get = () =>
title: 'WebCIA Weekly',
description: '保持领先所需的见解',
site: 'https://markyun.github.io/weekly/',
customData: `<image><url>https://markyun.github.io/images/avatar.png</url></image>`,
customData: `<image><url>https://markyun.github.io/weekly/assets/WebCIA.svg</url></image>`,
items: posts.map((item) => {
const url = item.url;
const oldTitle = url.split("/posts/")[1];
Expand Down
8 changes: 6 additions & 2 deletions src/styles/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,12 @@ body:not(img):not(canvas):not(video):not(svg):not(.ant-segmented).dark{
background: #191A27;
filter: invert(1) hue-rotate(180deg) brightness(120%) contrast(90%);
}
.dark img{
filter: invert(1) hue-rotate(180deg) brightness(120%) contrast(90%);
}
.dark aside{
background: #232423!important;
/* background: rgb(48, 46, 46)!important; */
border-left: 1px solid #505050;
border-right: 1px solid #505050;
filter: invert(1) hue-rotate(180deg) brightness(120%) contrast(90%);
/* filter: invert(1) hue-rotate(180deg) brightness(120%) contrast(90%); */
}

0 comments on commit d98ba62

Please sign in to comment.