Skip to content

Commit

Permalink
Update AudioBackendCard styles and fix file dialog selection handling
Browse files Browse the repository at this point in the history
  • Loading branch information
waveyboym committed Dec 23, 2024
1 parent bc8abbe commit 8363653
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
border-radius: 16px;
background: $on-hover-song;
padding: 10px;
width: calc(100% - 24px);
width: calc(100% - 30px);
border: 3px solid transparent;
align-items: center;
margin-bottom: 20px;

Expand All @@ -33,12 +34,10 @@
}

.selected{
width: calc(100% - 30px);
border: 3px solid $app-theme-col;
}

.audio-backend-hover:hover{
width: calc(100% - 30px);
border: 3px solid $app-theme-col;
}

Expand Down
2 changes: 1 addition & 1 deletion muzik-offline/src/utils/reducerUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,5 +154,5 @@ export async function openFileDialogDND(){
multiple: false,
defaultPath: await appConfigDir(),
});
if(selected) await reloadLibrary([...selected]);
if(selected) await reloadLibrary([selected]);
}

0 comments on commit 8363653

Please sign in to comment.