Forráskód Böngészése

Set max width for quoted text (#383)

Fixes #378
Silly 8 éve
szülő
commit
0f5558443d
1 módosított fájl, 7 hozzáadás és 2 törlés
  1. 7 2
      src/sass/sections/_conversation.scss

+ 7 - 2
src/sass/sections/_conversation.scss

@@ -51,13 +51,18 @@
         background-color: white;
         padding: 8px;
         display: flex;
-        justify-content: center;
         flex-direction: row;
 
         .message-quote {
-            flex: 1;
             @include word-wrap;
             line-height: 1.3em;
+            max-width: 85%;
+        }
+
+        .md-icon-button {
+            flex: 1;
+            display: flex;
+            justify-content: right;
         }
     }