Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
update setting button
Browse files Browse the repository at this point in the history
  • Loading branch information
zmh-program committed Aug 2, 2023
1 parent 8ae78b5 commit ed179a8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/assets/script/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { useRegisterSW } from "virtual:pwa-register/vue";
import { ref, watch } from "vue";

export const version = "1.6.0";
export const version = "1.7.1";

export const updater = ref<boolean>(false);

Expand Down
21 changes: 10 additions & 11 deletions src/components/SettingWindow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -311,19 +311,22 @@ function logout() {
.button {
position: absolute;
cursor: pointer;
padding: 4px;
width: 28px;
height: 28px;
border-radius: 50%;
padding: 6px;
width: 32px;
height: 32px;
border-radius: 6px;
fill: #fff;
background: rgba(255,255,255,.2);
backdrop-filter: blur(10px);
background: rgba(0,0,0,.2);
top: 26px;
right: 26px;
transition: .45s;
transition: .25s;
z-index: 2;
}
.button:hover {
background: rgba(0,0,0,.4);
}
.user {
display: flex;
flex-direction: row;
Expand Down Expand Up @@ -373,10 +376,6 @@ function logout() {
margin: 6px auto;
}
.button:hover {
rotate: 90deg;
}
.general span {
white-space: nowrap;
}
Expand Down

1 comment on commit ed179a8

@vercel
Copy link

@vercel vercel bot commented on ed179a8 Aug 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.