Merge pull request #165 from alimy/jc/alimy

web: optimize tweet link/visibility option display layout
pull/167/head
Michael Li 2 years ago committed by GitHub
commit c857fae28f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -321,13 +321,16 @@ const uploadToken = ref();
const switchLink = () => {
showLinkSet.value = !showLinkSet.value;
if (!showLinkSet.value) {
links.value = [];
if (showLinkSet.value && showEyeSet.value) {
showEyeSet.value = false
}
};
const switchEye = () => {
showEyeSet.value = !showEyeSet.value;
if (showEyeSet.value && showLinkSet.value) {
showLinkSet.value = false
}
};
// 加载at用户列表
@ -642,6 +645,13 @@ onMounted(() => {
}
}
}
.link-wrap {
margin-left: 42px;
margin-right: 42px;
}
.eye-wrap {
margin-left: 64px;
}
.login-wrap {
display: flex;
justify-content: center;
@ -662,7 +672,4 @@ onMounted(() => {
overflow: hidden;
}
}
.eye-wrap {
margin-left: 64px;
}
</style>
Loading…
Cancel
Save