JSFiddle - React, Tailwind, and code Playground
by adamschwartz
HTML
<div class="bubble">
<div class="bubble-inner">
This is a text bubble.
</div>
</div>
<br><br>
<div class="bubble">
<div class="bubble-inner">
This is a text bubble with multiple lines. This is a text bubble with multiple lines. This is a text bubble with multiple lines. This is a text bubble with multiple lines. This is a text bubble with multiple lines. This is a text bubble with multiple lines.
</div>
</div>
CSS
.bubble {
padding: 1em;
border-radius: .5em;
background: #DDEDFF;
color: #303786;
font-family: "Helvetica Neue", sans-serif;
font-size: 13px;
letter-spacing: .01em;
line-height: 1.4em
}