diff --git a/src-tauri/src/data/auth.rs b/src-tauri/src/data/auth.rs index 78aa087..111c68e 100644 --- a/src-tauri/src/data/auth.rs +++ b/src-tauri/src/data/auth.rs @@ -35,7 +35,7 @@ impl Encodable for OsStr{ } #[cfg(target_os = "linux")] fn to_bytes(&self) -> Vec { - self.as_encoded_bytes().to_vec() + self.as_bytes().to_vec() } } diff --git a/src/pages/main_page/main_page.css b/src/pages/main_page/main_page.css index 91a20ad..8d5d63f 100644 --- a/src/pages/main_page/main_page.css +++ b/src/pages/main_page/main_page.css @@ -246,7 +246,7 @@ color: white; transform: translateY(-5px); } -.arrow { +.sigma { border: solid rgb(255, 255, 255); border-width: 0 3px 3px 0; display: inline-block; @@ -301,7 +301,7 @@ color: white; } -.test5:hover .arrow { +.test5:hover .sigma { transform: rotate(315deg); transition: transform 0.7s ease-in-out; /* Add transition for smooth rotation */ } diff --git a/src/pages/main_page/main_page.tsx b/src/pages/main_page/main_page.tsx index af97809..d160837 100644 --- a/src/pages/main_page/main_page.tsx +++ b/src/pages/main_page/main_page.tsx @@ -46,7 +46,7 @@ export default function MainPage() {

Exit 😭​

-

+