JSFiddle - React, Tailwind, and code Playground

by Bryan McIntosh

HTML

<div class="row">
  <div id="maindiv" class="col-sm text-center">
    100.24
    <span>ABC Company</span>
  </div>
</div>

CSS

.col-sm.text-center {
    display: flex;
    /* justify-content: center; */
    align-items: center;
}
#maindiv {
  background-color: #0471AF;
  height: 100px;
  font-size: x-large;
}
span {
  font-size: x-small;
}