JSFiddle - React, Tailwind, and code Playground

by Cristian Trifan

HTML

<div>
    <span class="npm-module">npm module</span><span class="pkg-version">0.35.0</span>
</div>

CSS

.npm-module {
    height: 16px;
    width: 80px;
    color: white;
    text-align: center;
    font-family: sans-serif;
    font-weight: normal;
    font-size: 10px;
    background: #535353;
    border-radius: 2px 0 0 2px;
    line-height: 14px;
    padding: 2px 4px;
}

.pkg-version {
    height: 16px;
    width: 30px;
    color: white;
    text-align: center;
    font-family: sans-serif;
    font-weight: normal;
    font-size: 10px;
    background: #36BC0F;
    border-radius: 0px 2px 2px 0px;
    line-height: 14px;
    padding: 2px 4px;
}