Phyks (Lucas Verney)
2d9747482b
Also includes misc fixes * Use CSS modules for all the CSS. * Fix a bug in the filterbar which was not filtering anything. * Fix a l10n issue in songs view. * Update hook to clean build repo before running, preventing to push dev built code. * Update webpack build code.
28 lines
399 B
SCSS
28 lines
399 B
SCSS
.row {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.art {
|
|
composes: art from "./elements/Grid.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;
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|