don't force tile photos to be square, as there's no way to sensibly auto-crop; increase the tile size slightly to compensate

This commit is contained in:
zotlabs 2017-12-05 21:06:41 -08:00
parent b7ca2b41cc
commit 157966eb11

View File

@ -1728,32 +1728,33 @@ dl.bb-dl > dd > li {
.cloud-container { .cloud-container {
float: left; float: left;
width: 80px; width: 100px;
height: 80px; height: 110px;
margin: 5px; margin: 5px;
} }
.cloud-icon-container { .cloud-icon-container {
width: 48px; width: 64px;
height: 48px; height: 64px;
border: 1px solid #eee; border: 1px solid #eee;
border-radius: $radius; border-radius: $radius;
} }
.cloud-icon i { .cloud-icon i {
font-size: 32px; font-size: 42px;
color: #888; color: #888;
margin-top: 8px; margin-top: 8px;
margin-left: 6px;
} }
.cloud-icon img { .cloud-icon img {
width: 48px; max-width: 64px;
height: 48px; max-height: 64px;
border-radius: $radius; border-radius: $radius;
} }
.cloud-title { .cloud-title {
width: 78px; width: 98px;
height: 36px; height: 36px;
overflow: hidden; overflow: hidden;
} }