logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: a6bcd56c9f731e28e5da1dd334c7f3564000e638
parent: 8d33832fe1fc7e26b3d3960bfa1406df29133811
Author: Shpuld Shpludson <shp@cock.li>
Date:   Tue, 25 Jun 2019 16:30:21 +0000

Merge branch 'fix/gallery-margin-fix' into 'develop'

fix specificity that made attachments misalign

See merge request pleroma/pleroma-fe!855

Diffstat:

Msrc/components/gallery/gallery.vue4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/components/gallery/gallery.vue b/src/components/gallery/gallery.vue @@ -28,7 +28,9 @@ flex-grow: 1; margin-top: 0.5em; - .attachments, .attachment { + // FIXME: specificity problem with this and .attachments.attachment + // we shouldn't have the need for .image here + .attachment.image { margin: 0 0.5em 0 0; flex-grow: 1; height: 100%;