Damien Broqua
248c6da30d
#issue-13 Co-authored-by: dbroqua <contact@darkou.fr> Reviewed-on: dbroqua/MyMusicLibrary#15 Co-authored-by: Damien Broqua <dbroqua@noreply.localhost> Co-committed-by: Damien Broqua <dbroqua@noreply.localhost>
60 lines
No EOL
1.1 KiB
SCSS
60 lines
No EOL
1.1 KiB
SCSS
.ma-collection {
|
|
.filters {
|
|
display: flex;
|
|
justify-content: end;
|
|
padding: 0.5rem 0;
|
|
|
|
.field {
|
|
padding: 0 0.5rem;
|
|
|
|
select {
|
|
width: auto;
|
|
}
|
|
|
|
@include respond-to("small-up") {
|
|
&:last-child {
|
|
padding-right: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
@include respond-to("small") {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.list{
|
|
padding: 0.5rem 0.75rem;
|
|
border-bottom: 1px solid #dbdbdb;
|
|
|
|
&:nth-child(2n) {
|
|
background-color: #fafafa;
|
|
}
|
|
|
|
.title {
|
|
font-weight: 800;
|
|
font-size: 1.4rem;
|
|
|
|
.icon {
|
|
cursor: pointer;
|
|
color: #f14668;
|
|
|
|
&:hover {
|
|
color: #f03a5f;
|
|
}
|
|
}
|
|
}
|
|
|
|
.grid {
|
|
margin-top: 0.75rem;
|
|
}
|
|
|
|
img {
|
|
border: 2px solid #4a4a4a;
|
|
}
|
|
}
|
|
|
|
.total {
|
|
margin: 1rem 0;
|
|
}
|
|
} |