@@ -34,7 +21,6 @@ const onChangeTheme = (event: MouseEvent, themeName: ThemeName) => {
:key="index"
:disabled="activeThemeName === theme.name"
:command="theme.name"
- @click="(e) => onChangeTheme(e, theme.name)"
>
{{ theme.title }}
diff --git a/src/styles/index.scss b/src/styles/index.scss
index 9d98741a..fb4938ee 100644
--- a/src/styles/index.scss
+++ b/src/styles/index.scss
@@ -20,23 +20,6 @@ html {
height: 100%;
}
-::view-transition-old(root) {
- animation: none;
- mix-blend-mode: normal;
-}
-::view-transition-new(root) {
- mix-blend-mode: normal;
- animation: wave 0.7s ease-in;
-}
-@keyframes wave {
- from {
- clip-path: circle(0% at var(--x) var(--y));
- }
- to {
- clip-path: circle(150% at var(--x) var(--y));
- }
-}
-
body {
height: 100%;
background-color: var(--v3-body-bg-color);