Album/Playlist page search bar improvements

This commit is contained in:
Pedro Galhardo 2022-06-21 18:18:59 +01:00
parent 979a36c79a
commit 670efd81eb
No known key found for this signature in database
GPG key ID: 4740524CD85770A9
6 changed files with 75 additions and 11 deletions

View file

@ -598,6 +598,18 @@
}
}
}
.search-input-container {
height: 2.5rem;
margin: 1rem;
margin-top: 0;
scroll-margin-top: 1rem;
.search-input {
width: 100%;
height: 100%;
}
}
}
.floating-header {
@ -779,6 +791,29 @@
text-transform : uppercase;
}
}
.search-btn {
display: flex;
width: 32px;
align-items: center;
margin-right: 1rem;
background: transparent;
border: none;
cursor: pointer;
> img {
width: 18px;
height: 18px;
margin: auto;
opacity: 0.5
}
}
.search-btn.active {
> img {
opacity: 0.85
}
}
}
}