Avoids breaking thumbnail column inside metadata list

This commit is contained in:
mateuswetah 2020-07-22 09:16:56 -03:00
parent 0242e471ef
commit 89a8d410a1
2 changed files with 5 additions and 1 deletions

View File

@ -806,10 +806,14 @@
-webkit-column-break-inside: avoid;
page-break-inside: avoid;
break-inside: avoid;
display: inline-block;
width: 100%;
&:last-child {
-webkit-column-break-inside: auto;
page-break-inside: auto;
break-inside: auto;
display: inline-block;
width: 100%;
}
}
@media only screen and (min-width: 768px) {

File diff suppressed because one or more lines are too long