Skip to content

Commit

Permalink
fix: 修复 f-header 组件高度无法自动撑开的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyh2001 committed Dec 18, 2023
1 parent 6b63af7 commit 80e04ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- 修复 `f-table` 组件对于英文字母的文字不换行样式的问题
- 修复 `f-table` 组件返回类型
- 修复 `f-aside` 组件样式被挤压的问题
- 修复 `f-header` 组件高度无法自动撑开的问题

## 0.65.0 (2023-12-12)

Expand Down
2 changes: 1 addition & 1 deletion packages/fighting-theme/src/header.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.f-header {
flex-shrink: 0;
box-sizing: border-box;
height: var(--header-height, 60px);
min-height: var(--header-height, 60px);
padding: var(--header-padding, 0);
}

0 comments on commit 80e04ad

Please sign in to comment.