修改日历组件下滑位置

This commit is contained in:
筱野
2025-11-14 15:50:00 +08:00
parent 12d597aec2
commit b13979c4ab
9 changed files with 336 additions and 34 deletions

View File

@@ -12,16 +12,20 @@
position: absolute;
top: 6px;
left: 50%;
width: 32px;
height: 4px;
background-color: rgba(22, 24, 35, 0.2);
border-radius: 2px;
width: 90px;
height: 30px;
z-index: 10;
cursor: pointer;
transition: background-color 0.2s ease;
&:active {
background-color: #9ca3af;
display: flex;
justify-content: center;
align-items: flex-start;
&::before{
content: '';
width: 32px;
height: 4px;
background-color: rgba(22, 24, 35, 0.2);
border-radius: 2px;
}
}