revert(Footer): 回滚9284d48 Footer.vue

This commit is contained in:
PKC278
2025-12-31 22:14:13 +08:00
parent 947a7d8296
commit 0bba1068af
+5 -4
View File
@@ -328,7 +328,6 @@ const showDynamicButton = computed(() => {
block-size: auto; block-size: auto;
inline-size: auto; inline-size: auto;
min-block-size: 0; min-block-size: 0;
max-width: 60px; // 限制最大宽度以便动画
.footer-card-content { .footer-card-content {
padding: 3px; padding: 3px;
@@ -359,12 +358,14 @@ const showDynamicButton = computed(() => {
transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
} }
.fade-slide-enter-from, .fade-slide-enter-from {
opacity: 0;
transform: translateX(20px);
}
.fade-slide-leave-to { .fade-slide-leave-to {
opacity: 0; opacity: 0;
transform: translateX(20px); transform: translateX(20px);
max-width: 0;
margin-inline-start: 0 !important;
} }
@keyframes fade-in { @keyframes fade-in {