style(knowledge): 为知识页面的 opacity-button 添加过渡效果

- 在 knowledge 页面的 index.vue 文件中,为 .opacity-button 类添加了 transition 属性
- 这将使按钮的透明度变化具有平滑的过渡效果,提升用户体验
This commit is contained in:
陈昱达
2025-04-22 21:27:16 +08:00
parent a0226b030f
commit 0229c78255

View File

@@ -218,6 +218,7 @@ export default {
border-radius: 7px;
border: 1px solid #635cff;
.opacity-button {
transition: all 0.5s ease;
opacity: 1;
}
}