MusicTopus/sass/ma-collection.scss

43 lines
811 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;
color: $danger-color;
@include transition() {}
&:hover {
color: $danger-color-hl;
}
}
2022-02-18 16:53:54 +01:00
}
}
.total {
margin: 0.75rem 0;
}
2022-02-18 16:53:54 +01:00
}