diff --git a/src/components/slide/SlideView.vue b/src/components/slide/SlideView.vue
index ba9e1ea7..71e57258 100644
--- a/src/components/slide/SlideView.vue
+++ b/src/components/slide/SlideView.vue
@@ -1,6 +1,10 @@
@@ -145,30 +131,24 @@ onUnmounted(() => {
}
.scroll-button {
+ z-index: 2;
display: flex;
align-items: center;
justify-content: center;
- height: 28px;
- width: 28px;
- border-radius: 50%;
- background-color: rgba(var(--v-theme-primary), 0.1);
- color: rgb(var(--v-theme-primary));
- cursor: pointer;
border: none;
+ border-radius: 50%;
+ block-size: 28px;
+ cursor: pointer;
+ inline-size: 28px;
outline: none;
- z-index: 2;
transition: background-color 0.2s ease;
-
- &:hover {
- background-color: rgba(var(--v-theme-primary), 0.2);
- }
-
+
&.left-button {
- margin-right: 6px;
+ margin-inline-end: 6px;
}
-
+
&.right-button {
- margin-left: 6px;
+ margin-inline-start: 6px;
}
}
diff --git a/src/pages/login.vue b/src/pages/login.vue
index 97d3f91f..4fa09933 100644
--- a/src/pages/login.vue
+++ b/src/pages/login.vue
@@ -180,12 +180,7 @@ onMounted(async () => {