ampache_react/app/styles/Album.scss

43 lines
619 B
SCSS
Raw Normal View History

2016-07-31 12:18:46 +02:00
$rowMarginTop: 30px;
$rowMarginBottom: 10px;
.row {
2016-07-31 12:18:46 +02:00
margin-top: $rowMarginTop;
}
.art {
composes: art from "./elements/Grid.scss";
}
.art:hover {
cursor: initial;
}
.play {
composes: play from "./Songs.scss";
}
@media (max-width: 767px) {
.nameRow h2 {
margin-top: 0;
margin-bottom: 0;
}
.artRow p,
.artRow img {
margin: 0;
}
.nameRow,
.artRow {
float: none;
display: inline-block;
vertical-align: middle;
2016-07-31 12:18:46 +02:00
margin-bottom: $rowMarginBottom;
}
2016-07-30 01:05:25 +02:00
.songs {
2016-07-31 12:18:46 +02:00
composes: songs from "./Songs.scss";
2016-07-30 01:05:25 +02:00
}
}