Implement copy links button

This commit is contained in:
Jorge Vargas 2025-03-11 19:50:28 -06:00
parent dbf115f254
commit c8cd8c724f
6 changed files with 156 additions and 4 deletions

View file

@ -1,4 +1,6 @@
---
import { Toaster } from 'react-hot-toast'
import Downloader from '../components/Downloader'
---
@ -86,10 +88,18 @@ import Downloader from '../components/Downloader'
border-bottom: 1px solid #333;
cursor: pointer;
transition: background 0.2s;
display: flex;
align-items: center;
justify-content: space-between;
}
.album-title:hover {
background-color: #333;
}
.album-title .btn-container {
flex-shrink: 0;
display: flex;
column-gap: 4px;
}
.track {
display: flex;
align-items: center;
@ -183,5 +193,6 @@ import Downloader from '../components/Downloader'
<body>
<h1>Khinsider Downloader</h1>
<Downloader client:only='react' />
<Toaster client:only />
<div class='error'></div>
</body>