MusicTopus/sass/collection.scss

32 lines
567 B
SCSS
Raw Normal View History

.collection {
h1 {
i {
cursor: pointer;
}
}
2022-02-18 16:53:54 +01:00
.showMoreFilters {
cursor: pointer;
.up::before {
transform: rotate(90deg);
}
.down::before {
transform: rotate(270deg);
}
}
2022-02-18 16:53:54 +01:00
.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
}
}
}