lbry-desktop/ui/scss/component/_file-tile.scss
2017-10-02 23:05:11 -06:00

36 lines
826 B
SCSS

$height-file-tile: $spacing-vertical * 6;
.file-tile__row {
overflow: hidden;
height: $height-file-tile;
//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;
}
.card__title-primary {
margin-top: 0;
}
.meta {
background: var(--color-canvas);
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 3px;
display: inline-block;
padding: 8px;
max-width: 80%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
.meta-uri {
margin: 0 8px;
}
}
}