From aa58dc2584f83416387c8e35c26f54f597e25c22 Mon Sep 17 00:00:00 2001 From: Alex Krolick Date: Tue, 16 Jul 2019 14:35:02 -0700 Subject: [PATCH] fix(media): adjust composition of body + figure content --- src/components/media/Media.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/media/Media.scss b/src/components/media/Media.scss index 6dc3b054c9c..43088ed370f 100644 --- a/src/components/media/Media.scss +++ b/src/components/media/Media.scss @@ -12,13 +12,16 @@ flex: 0 0 auto; justify-self: flex-start; margin: 0; - margin-right: 10px; padding: 0; } // the main content, e.g. title and message .bdl-Media-body { flex: 1 1 auto; + margin-left: 10px; + // handle wrapping long words in text content without breaking + // float position of menu + word-break: break-word; } // the "..." menu button, meant to be used inside Media-body