Skip to content

Commit

Permalink
更新到v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
awinds committed May 10, 2024
1 parent 4ca8e0a commit 58a5d75
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Demo:[https://www.xa.ink][2]
主题设置页面位置:Typecho 后台->控制台->外观->设置外观。
# 技术栈
- 使用[Tailwind CSS](https://www.tailwindcss.cn/)
- 使用[Tailwind CSS](https://www.tailwindcss.cn/) min发布版,不用打包
- 使用[JQuery](https://jquery.com/)和相关插件
- 使用[jr-qrcode](https://github.com/diamont1001/jrQrcode)生成二维码
- 使用[OwO](https://github.com/DIYgod/OwO)表情
Expand All @@ -45,6 +45,8 @@ Open sourced under the MIT license.
保留Theme by Xaink,谢谢!
# 更新说明
## 1.2.1
1. 修复移动浏览器上左侧菜单无法滚动的问题。
## 1.2
1. 修改归档页面按年显示统计,不再显示文章,只显示按年再按月统计。
2. 增加时间线页面,按年显示文章,当年显示,其它折叠。
Expand Down
4 changes: 2 additions & 2 deletions core/menu.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</div>

<!-- 移动设备上的侧边菜单 -->
<aside class="xa-theme fixed top-0 left-0 h-full w-3/5 z-50 transform transition duration-300 ease-in-out -translate-x-full">
<aside class="xa-theme fixed overflow-y-auto top-0 left-0 h-full w-3/5 z-50 transform transition duration-300 ease-in-out -translate-x-full">
<div class="mt-12">
<ul class="flex flex-col space-y-4 px-4">
<a href="<?php $this->options->siteUrl(); ?>"><li class="px-4 py-2 rounded-md">首页</li></a>
Expand All @@ -64,7 +64,7 @@
<?php endif; ?>
</ul>
</div>
<div class="mt-16">
<div class="mt-16 mb-4">
<ul class="flex flex-col space-y-4 px-4">
<?php $this->widget('Widget_Contents_Page_List')->to($pages); ?>
<?php while($pages->next()): ?>
Expand Down
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*
* @package XaInk
* @author XiaoA
* @version 1.2
* @version 1.2.1
* @link https://www.xa.ink/
*/
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
Expand Down

0 comments on commit 58a5d75

Please sign in to comment.