Skip to content

Commit

Permalink
fix: 修复 f-tooltip 组件受到布局影响的样式问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyh2001 committed Dec 11, 2023
1 parent 902b269 commit 748e7bb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- 更新 `f-swap` 组件 `on-change` 方法参数接收顺序
- 修复 `f-calendar` 组件部分回调失效问题
- 修复 `f-date-picker` 选择日期失效问题
- 修复 `f-tooltip` 组件受到布局影响的样式问题

## 0.64.1 (2023-12-01)

Expand Down
1 change: 1 addition & 0 deletions packages/fighting-theme/src/tooltip.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
cursor: pointer;
position: relative;
display: inline-block;
height: max-content;

&::before,
&::after {
Expand Down
10 changes: 2 additions & 8 deletions start/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
<template>
<f-date-picker v-model:date="value1" />
</template>
<script lang="ts" setup></script>

<script lang="ts" setup>
import { ref } from 'vue'
const value1 = ref('')
</script>
<template></template>

0 comments on commit 748e7bb

Please sign in to comment.