lbry-desktop/ui/scss/component/_file-tile.scss

26 lines
585 B
SCSS
Raw Normal View History

@import "../global";
2017-05-01 18:31:13 -04:00
$height-file-tile: $spacing-vertical * 6;
.file-tile__row {
2017-05-01 18:31:13 -04:00
overflow: hidden;
2017-04-17 08:27:39 -04:00
height: $height-file-tile;
2017-04-11 22:01:45 -04:00
.credit-amount {
2017-04-10 08:32:40 -04:00
float: right;
}
2017-05-01 18:31:13 -04:00
//also a hack
.card__media {
height: $height-file-tile;
max-width: $height-file-tile;
width: $height-file-tile;
margin-right: $spacing-vertical / 2;
float: left;
}
//basically everything here is a hack now
.file-tile__content {
padding-top: $spacing-vertical * 1/3;
margin-left: $height-file-tile + $spacing-vertical / 2;
}
2017-04-12 10:55:19 -04:00
.card__title-primary {
2017-05-01 18:31:13 -04:00
margin-top: 0;
2017-04-12 10:55:19 -04:00
}
2017-01-21 16:31:41 -05:00
}