feat(历史薪资页):调整布局

This commit is contained in:
hzj 2025-10-30 11:04:53 +08:00
parent b8bae979d0
commit bb1db52774

View File

@ -214,20 +214,7 @@
<div style="margin: 0; font-size: 18px; font-weight: 600; color: #333">
{{ t('help') }}
</div>
<div
style="
position: absolute;
right: 10px;
color: black;
display: flex;
align-items: center;
justify-content: center;
"
@click="closeModal"
>
×
</div>
<div @click="closeModal" class="closeBt">×</div>
</div>
<div class="help-modal-body">
@ -501,6 +488,16 @@ onMounted(async () => {
font-family: 'SF Pro Text';
}
.closeBt {
position: absolute;
right: 10px;
color: black;
display: flex;
align-items: center;
justify-content: center;
}
.salaryList::-webkit-scrollbar {
display: none;
}
@ -895,4 +892,9 @@ onMounted(async () => {
[dir='rtl'] .info-btn {
/* transform: scaleX(-1); */
}
[dir='rtl'] .closeBt {
left: 10px;
right: auto;
}
</style>