Merge branch 'over-4-attachments' into 'develop'

Indicate > 4 attachments, fixes #591

Closes #591

See merge request soapbox-pub/soapbox-fe!510
This commit is contained in:
Alex Gleason 2021-05-17 22:54:18 +00:00
commit 1c3c1b82c0
2 changed files with 20 additions and 0 deletions

View file

@ -25,6 +25,26 @@
transform: translate(-50%, -50%);
font-size: 100px;
}
&-overflow {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.75);
z-index: 2;
color: #333;
text-align: center;
font-weight: bold;
font-size: 50px;
display: flex;
align-items: center;
justify-content: center;
pointer-events: none;
}
}
.media-gallery__item-thumbnail {