fix: 修复面试状态下拉栏显示问题
- 将下拉栏定位从absolute改为fixed - 修复位置计算,使用像素单位(px) - 下拉栏居中显示在按钮下方 - 添加最大高度限制防止内容过长 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
}
|
||||
|
||||
.interview-status-dropdown {
|
||||
position: absolute;
|
||||
position: fixed;
|
||||
background: white;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
|
||||
@@ -17,6 +17,7 @@
|
||||
z-index: 1000;
|
||||
animation: slideDown 0.3s ease-out;
|
||||
overflow: hidden;
|
||||
max-height: 500px;
|
||||
}
|
||||
|
||||
@keyframes slideDown {
|
||||
|
||||
Reference in New Issue
Block a user