Skip to content
This repository has been archived by the owner on Jan 14, 2025. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
raisfeld-ori committed Mar 18, 2024
2 parents 50d1e6e + 02476ab commit 5031f85
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src-tauri/src/data/auth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ impl Encodable for OsStr{
}
#[cfg(target_os = "linux")]
fn to_bytes(&self) -> Vec<u8> {
self.as_encoded_bytes().to_vec()
self.as_bytes().to_vec()
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/pages/main_page/main_page.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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 */
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/main_page/main_page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function MainPage() {
<p className='hiddenclose'>Exit 😭​</p>

<div className='test5'>
<p><i className="arrow right"></i></p>
<p><i className="sigma right"></i></p>
<button className='folderappmenu'>
<img className='folderappmenu' src={folder} alt="filesystem" />
</button>
Expand Down

0 comments on commit 5031f85

Please sign in to comment.