This commit is contained in:
CortexCore
2025-01-23 11:39:53 +08:00
parent 000a079985
commit 57e24939fb
7 changed files with 52 additions and 18 deletions

View File

@@ -6,6 +6,7 @@ using System.IO;
using BITKit.IO;
using BITKit.UX;
using Cysharp.Threading.Tasks;
using UnityEditorInternal;
using UnityEngine;
using UnityEngine.Events;
using UnityEngine.Rendering;

View File

@@ -508,3 +508,21 @@ Button.clear {
TabContainer > * {
flex-grow: 1;
}
.transition_entry {
opacity: 0;
}
.transition_entry_async {
opacity: 1;
transition-duration: 0.1s;
}
.transition_exit {
opacity: 1;
}
.transition_exit_async {
opacity: 0;
transition-duration: 0.1s;
}