diff options
author | Vitaly Takmazov | 2019-05-31 16:51:41 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:55 +0300 |
commit | 0eee3a29974794292df35e9a47980b3744aab31b (patch) | |
tree | 7bebee5559a8c5556ac9930dda29b4ad3d93f44a | |
parent | 48ab6a81af6aa91eb2dcbed0f709c8d9dc15cdab (diff) |
bubble styling
-rw-r--r-- | vnext/src/ui/PM.js | 3 | ||||
-rw-r--r-- | vnext/src/ui/Thread.css | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/vnext/src/ui/PM.js b/vnext/src/ui/PM.js index a1e70ad5..e5eddb9e 100644 --- a/vnext/src/ui/PM.js +++ b/vnext/src/ui/PM.js @@ -28,7 +28,8 @@ function bubbleStyle(me, msg) { return { background: background, color: color, - padding: '12px' + padding: '12px', + display: 'inline-block' }; } diff --git a/vnext/src/ui/Thread.css b/vnext/src/ui/Thread.css index 52b52f14..3a3f9589 100644 --- a/vnext/src/ui/Thread.css +++ b/vnext/src/ui/Thread.css @@ -10,4 +10,5 @@ padding: 6px 12px; margin-left: 48px; margin-bottom: 12px; + display: inline-block; } |