mirror of
https://github.com/BewlyBewly/BewlyBewly.git
synced 2025-04-14 13:15:29 +00:00
* chore: format css * update * update * chore: eslint-skip * update * update * chore: enforce the use of double quotes in `--at-apply` values * refactor: rename `--at-apply` into `--uno` * fix: fix dark theme userSpace search page css (#811) * fix userSpace search css * add new fix * add new fix * fix(adaptedStyles): adapt unadapted contents --------- Co-authored-by: hakadao <a578457889743@gmail.com> Co-authored-by: 夜晚的鸡鸣 <110297461+MidnightCrowing@users.noreply.github.com>
42 lines
750 B
SCSS
42 lines
750 B
SCSS
.page-fade-enter-active,
|
|
.page-fade-leave-active {
|
|
--uno: "transition-opacity duration-500 transform-gpu";
|
|
}
|
|
.page-fade-enter-from,
|
|
.page-fade-leave-to {
|
|
--uno: "opacity-0";
|
|
}
|
|
.page-fade-leave-to {
|
|
--uno: "hidden";
|
|
}
|
|
|
|
.fade-enter-active,
|
|
.fade-leave-active {
|
|
--uno: "transition-opacity duration-500";
|
|
}
|
|
.fade-enter-from,
|
|
.fade-leave-to {
|
|
--uno: "opacity-0";
|
|
}
|
|
|
|
.list-enter-active,
|
|
.list-leave-active {
|
|
--uno: "transition-all duration-500";
|
|
}
|
|
.list-enter-from,
|
|
.list-leave-to {
|
|
--uno: "opacity-0 translate-y-6 transform-gpu";
|
|
}
|
|
.list-leave-to {
|
|
--uno: "hidden";
|
|
}
|
|
|
|
.modal-enter-active,
|
|
.modal-leave-active {
|
|
--uno: "transition-all duration-500 transform-gpu";
|
|
}
|
|
.modal-enter-from,
|
|
.modal-leave-to {
|
|
--uno: "opacity-0 scale-105";
|
|
}
|