mirror of
https://github.com/janishutz/MusicPlayer.git
synced 2026-09-10 14:25:24 +02:00
45 lines
691 B
SCSS
45 lines
691 B
SCSS
.search-results-wrapper {
|
|
width: 70vw;
|
|
height: 60vh;
|
|
overflow-x: hidden;
|
|
overflow-y: scroll;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
|
|
&.placeholder {
|
|
justify-content: center;
|
|
}
|
|
|
|
>div {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 5px;
|
|
width: 75%;
|
|
cursor: pointer;
|
|
|
|
>div {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
|
|
>* {
|
|
margin: 5px;
|
|
}
|
|
}
|
|
|
|
>img {
|
|
height: 7rem;
|
|
width: 7rem;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
>.fa-solid {
|
|
margin-left: auto;
|
|
font-size: 2rem;
|
|
}
|
|
}
|
|
}
|