MusicTopus/sass/ma-collection.scss

42 lines
752 B
SCSS
Raw Normal View History

2022-02-18 16:53:54 +01:00
.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{
.title {
2022-02-23 08:41:30 +01:00
.icon-trash {
cursor: pointer;
2022-02-23 11:33:57 +01:00
color: #d73455;
&:hover {
2022-02-23 11:33:57 +01:00
color: #d70933;
}
}
2022-02-18 16:53:54 +01:00
}
}
.total {
margin: 1rem 0;
}
2022-02-18 16:53:54 +01:00
}