Skip to content

Commit

Permalink
🛠️ 2.5.0-alpha.3
Browse files Browse the repository at this point in the history
  • Loading branch information
EveSunMaple committed Jul 23, 2024
1 parent 7375af1 commit 676d0b3
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,3 +192,9 @@
### Fix

- 修复了上一页、下一页按钮与页脚黏在一起的问题

## [2.5.0-alpha.3] - 2024-7-22

### Fix

- 修复了手机视图下导航栏消失不见的问题
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "frosti",
"type": "module",
"version": "2.5.0-alpha.2",
"version": "2.5.0-alpha.3",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { SITE_TITLE } from "../consts";
---

<div
class="fixed p-0 w-full transform -translate-y-full text-center z-50 transition-transform bg-base-100 shadow-xl"
class="navbar max-md:translate-y-0 fixed px-2 w-full transform -translate-y-full text-center z-50 transition-transform bg-base-100 shadow-xl"
>
<div class="navbar-start">
<div class="dropdown">
Expand Down
2 changes: 1 addition & 1 deletion src/components/HeaderMenu.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { menuItems } from "../consts.ts";
menuItems.map((item) => (
<li>
<a
class="menu-item p-4"
class="menu-item text-xl font-bold p-4"
id={`header-${item.id}`}
href={item.href}
target={item.target || "_self"}
Expand Down

0 comments on commit 676d0b3

Please sign in to comment.