-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ 支持群 poke 消息以及相关动画/窗口动画 ✨ 新增一个没什么用的 bot 状态功能,仅限于开启了 ws 心跳功能的 bot 🐛 修正消息列表在窄布局下的错误,由 3a5483e 损坏 :bug: 修正在 iOS 浏览器下由于通知功能缺失导致通知下游功能损坏的问题 :bug: 修正初次打开由于存储的商城表情未初始化导致的页面卡死问题 :bug: 修正初次打开由于存储的代码未初始导致的页面卡死问题 :bug: 修正由于消息解析器调整公告解析出现错误导致的页面卡死问题,由 c64592d 损坏 :lipstick: 将全局字体限制为非衬线字体,防止在某些浏览器以及 linux 下出现默认为衬线字体的情况 :lipstick: 新增一组常见状态色便于使用 :heavy_plus_sign: 新增依赖:animejs :green_heart: 发布版本现在会构建一个用于 root 的 web 包便于使用
- Loading branch information
Showing
19 changed files
with
263 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
:root { | ||
--color-blue: #316cf4; | ||
--color-green: #408558; | ||
--color-red: #cb444a; | ||
--color-yellow: #f6c344; | ||
|
||
--color-bg-blue: #393e47; | ||
--color-bg-green: #3f544a; | ||
--color-bg-red: #523a3c; | ||
--color-bg-yellow: #504b3d; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
:root { | ||
--color-blue: #316cf4; | ||
--color-green: #408558; | ||
--color-red: #cb444a; | ||
--color-yellow: #f6c344; | ||
|
||
--color-bg-blue: #d3e1fc; | ||
--color-bg-green: #d5e6de; | ||
--color-bg-red: #f3d8da; | ||
--color-bg-yellow: #fdf3d1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
html, body { | ||
background: transparent; | ||
} | ||
|
||
.home-body { | ||
background: rgba(var(--color-card-rgb), 0.6); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.